diff options
author | Benno Schulenberg <bensberg@justemail.net> | 2014-02-07 17:52:59 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2014-02-07 10:52:59 -0700 |
commit | 6726b9071c4f53695dbd894cef24f08562a5c587 (patch) | |
tree | 60941bc347ef89e345288d4c6b0268ef5555b1ef /gcc/fortran/resolve.c | |
parent | 7ba03e5e3f37374e30fc67e059f5eb46364c0474 (diff) | |
download | gcc-6726b9071c4f53695dbd894cef24f08562a5c587.zip gcc-6726b9071c4f53695dbd894cef24f08562a5c587.tar.gz gcc-6726b9071c4f53695dbd894cef24f08562a5c587.tar.bz2 |
re PR translation/52289 (translatable string typo: "must not be have")
PR translation/52289
* fortran/resolve.c (resolve_ordinary_assign): Fix typoed word
in an error message.
From-SVN: r207609
Diffstat (limited to 'gcc/fortran/resolve.c')
-rw-r--r-- | gcc/fortran/resolve.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/resolve.c b/gcc/fortran/resolve.c index ad088bb..898a0ae 100644 --- a/gcc/fortran/resolve.c +++ b/gcc/fortran/resolve.c @@ -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; } |