diff options
author | Joseph Myers <joseph@codesourcery.com> | 2004-11-25 11:13:38 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2004-11-25 11:13:38 +0000 |
commit | 597cdf4f4354fce6b418f8d628a8a0f5ea778e34 (patch) | |
tree | 67160e01dfbb1e6dc24efedebabe3742b5e5cbe4 /gcc/fortran/gfortranspec.c | |
parent | cc175e7c89539b0b55ef73c0ba9c7a6e062cc0d4 (diff) | |
download | gcc-597cdf4f4354fce6b418f8d628a8a0f5ea778e34.zip gcc-597cdf4f4354fce6b418f8d628a8a0f5ea778e34.tar.gz gcc-597cdf4f4354fce6b418f8d628a8a0f5ea778e34.tar.bz2 |
darwin.h (SUBTARGET_OVERRIDE_OPTIONS): Use %qs instead of `%s' in diagnostic.
* config/rs6000/darwin.h (SUBTARGET_OVERRIDE_OPTIONS): Use %qs
instead of `%s' in diagnostic.
cp:
* g++spec.c, lex.c: Avoid ` as left quote in diagnostics.
fortran:
* f95-lang.c, gfortranspec.c, trans-decl.c: Avoid ` as left quote
in diagnostics.
java:
* gjavah.c, jcf-dump.c, jv-scan.c, jvspec.c: Avoid ` as left quote
in diagnostics.
From-SVN: r91282
Diffstat (limited to 'gcc/fortran/gfortranspec.c')
-rw-r--r-- | gcc/fortran/gfortranspec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fortran/gfortranspec.c b/gcc/fortran/gfortranspec.c index 90db93d..573d323 100644 --- a/gcc/fortran/gfortranspec.c +++ b/gcc/fortran/gfortranspec.c @@ -228,7 +228,7 @@ append_arg (const char *arg) } if (g77_newargc == newargsize) - fatal ("overflowed output arg list for `%s'", arg); + fatal ("overflowed output arg list for '%s'", arg); g77_newargv[g77_newargc++] = arg; } @@ -372,7 +372,7 @@ For more information about these matters, see the file named COPYING\n\ if (i + skip < argc) i += skip; else - fatal ("argument to `%s' missing", argv[i]); + fatal ("argument to '%s' missing", argv[i]); } if ((n_outfiles != 0) && (n_infiles == 0)) |