re PR translation/52289 (translatable string typo: "must not be have")
authorBenno Schulenberg <bensberg@justemail.net>
Fri, 7 Feb 2014 17:52:59 +0000 (17:52 +0000)
committerJeff Law <law@gcc.gnu.org>
Fri, 7 Feb 2014 17:52:59 +0000 (10:52 -0700)
        PR translation/52289
        * fortran/resolve.c (resolve_ordinary_assign): Fix typoed word
        in an error message.

From-SVN: r207609

gcc/fortran/ChangeLog
gcc/fortran/resolve.c

index 102d5f2..79f2074 100644 (file)
@@ -1,3 +1,9 @@
+2014-02-07  Benno Schulenberg  <bensberg@justemail.net>
+
+       PR translation/52289
+       * fortran/resolve.c (resolve_ordinary_assign): Fix typoed word
+       in an error message.
+
 2014-02-02  Mikael Morin  <mikael@gcc.gnu.org>
 
        PR fortran/57033
index ad088bb..898a0ae 100644 (file)
@@ -9218,7 +9218,7 @@ resolve_ordinary_assign (gfc_code *code, gfc_namespace *ns)
   /* F2008, Section 7.2.1.2.  */
   if (gfc_is_coindexed (lhs) && gfc_has_ultimate_allocatable (lhs))
     {
-      gfc_error ("Coindexed variable must not be have an allocatable ultimate "
+      gfc_error ("Coindexed variable must not have an allocatable ultimate "
                 "component in assignment at %L", &lhs->where);
       return false;
     }