This is the mail archive of the fortran@gcc.gnu.org mailing list for the GNU Fortran project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Fortran,patch,committed] Add a missing space in an error message


Commit to trunk as obvious.

Tobias

Index: gcc/fortran/ChangeLog
===================================================================
--- gcc/fortran/ChangeLog       (Revision 118819)
+++ gcc/fortran/ChangeLog       (Arbeitskopie)
@@ -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.

Index: gcc/fortran/match.c
===================================================================
--- gcc/fortran/match.c (Revision 118819)
+++ gcc/fortran/match.c (Arbeitskopie)
@@ -2598,7 +2598,7 @@
             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 ();
            }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]