This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[PATCH,fortran] Fix whitespace in resolve.c
- From: Steve Kargl <sgk at troutmask dot apl dot washington dot edu>
- To: fortran at gcc dot gnu dot org, gcc-patches at gcc dot gnu dot org
- Date: Thu, 10 Jun 2010 17:07:44 -0700
- Subject: [PATCH,fortran] Fix whitespace in resolve.c
I've committed this trivially obvious patch.
2010-06-10 Steven G. Kargl <kargl@gcc.gnu.org>
* resolve.c (resolve_operator): Fix whitespace.
Index: resolve.c
===================================================================
--- resolve.c (revision 160583)
+++ resolve.c (working copy)
@@ -3615,11 +3615,11 @@ resolve_operator (gfc_expr *e)
e->rank = op1->rank;
if (e->shape == NULL)
{
- t = compare_shapes(op1, op2);
+ t = compare_shapes (op1, op2);
if (t == FAILURE)
e->shape = NULL;
else
- e->shape = gfc_copy_shape (op1->shape, op1->rank);
+ e->shape = gfc_copy_shape (op1->shape, op1->rank);
}
}
else
--
Steve