diff options
author | Tobias Burnus <burnus@net-b.de> | 2006-11-14 18:31:00 +0100 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2006-11-14 18:31:00 +0100 |
commit | 17339e8836ffdc807caf2f81c90c72cb171f2a66 (patch) | |
tree | a7517fe00c678a172256647a0cf80fa63dd18ef9 /gcc/fortran | |
parent | 1f3a64d10af5d12d45e91af44d012541a7d1a204 (diff) | |
download | gcc-17339e8836ffdc807caf2f81c90c72cb171f2a66.zip gcc-17339e8836ffdc807caf2f81c90c72cb171f2a66.tar.gz gcc-17339e8836ffdc807caf2f81c90c72cb171f2a66.tar.bz2 |
match.c (gfc_match_namelist): Add missing space to error message.
2006-11-14 Tobias Burnus <burnus@net-b.de>
* match.c (gfc_match_namelist): Add missing space to
error message.
From-SVN: r118820
Diffstat (limited to 'gcc/fortran')
-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 e3e1351..88bc865 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 5012c35..cb0fb91 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 (); } |