From patchwork Fri Jun 11 00:07:44 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [fortran] Fix whitespace in resolve.c Date: Thu, 10 Jun 2010 14:07:44 -0000 From: Steve Kargl X-Patchwork-Id: 55279 Message-Id: <20100611000744.GA2114@troutmask.apl.washington.edu> To: fortran@gcc.gnu.org, gcc-patches@gcc.gnu.org I've committed this trivially obvious patch. 2010-06-10 Steven G. Kargl * 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