From: Tobias Burnus Date: Tue, 14 Nov 2006 17:31:00 +0000 (+0100) Subject: match.c (gfc_match_namelist): Add missing space to error message. X-Git-Tag: releases/gcc-4.3.0~8470 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=17339e8836ffdc807caf2f81c90c72cb171f2a66;p=thirdparty%2Fgcc.git match.c (gfc_match_namelist): Add missing space to error message. 2006-11-14 Tobias Burnus * match.c (gfc_match_namelist): Add missing space to error message. From-SVN: r118820 --- diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index e3e1351f41f3..88bc865b7b7e 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,8 @@ +2006-11-14 Tobias Burnus + + * match.c (gfc_match_namelist): Add missing space to + error message. + 2006-11-14 Tobias Burnus PR fortran/29657 diff --git a/gcc/fortran/match.c b/gcc/fortran/match.c index 5012c3588ee3..cb0fb914b4e6 100644 --- a/gcc/fortran/match.c +++ b/gcc/fortran/match.c @@ -2598,7 +2598,7 @@ gfc_match_namelist (void) these are the only errors for the next two lines. */ if (sym->as && sym->as->type == AS_ASSUMED_SIZE) { - gfc_error ("Assumed size array '%s' in namelist '%s'at " + gfc_error ("Assumed size array '%s' in namelist '%s' at " "%C is not allowed.", sym->name, group_name->name); gfc_error_check (); }