diff options
-rw-r--r-- | gcc/fortran/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/fortran/match.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index e3e1351f41f..88bc865b7b7 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,5 +1,10 @@ 2006-11-14 Tobias Burnus <burnus@net-b.de> + * match.c (gfc_match_namelist): Add missing space to + error message. + +2006-11-14 Tobias Burnus <burnus@net-b.de> + PR fortran/29657 * symbol.c (check_conflict): Add further conflicts. diff --git a/gcc/fortran/match.c b/gcc/fortran/match.c index 5012c3588ee..cb0fb914b4e 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 (); } |