diff options
author | Zack Weinberg <zack@wolery.cumb.org> | 2000-07-04 00:01:11 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2000-07-04 00:01:11 +0000 |
commit | 18fa319d7bcfcad9b2d783c069d660d5b6e44f03 (patch) | |
tree | 00fddb832801f842b629bed70a3ee9ac0ed615a2 /gcc | |
parent | 73003b2faf1967ee1e4dbbfdfe637d7899e284e8 (diff) | |
download | gcc-18fa319d7bcfcad9b2d783c069d660d5b6e44f03.zip gcc-18fa319d7bcfcad9b2d783c069d660d5b6e44f03.tar.gz gcc-18fa319d7bcfcad9b2d783c069d660d5b6e44f03.tar.bz2 |
cppspec.c (lang_specific_driver): Use double quotes in error message.
* cppspec.c (lang_specific_driver): Use double quotes in error
message.
From-SVN: r34856
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cppspec.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 11e5173..4aced4a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-07-03 Zack Weinberg <zack@wolery.cumb.org> + + * cppspec.c (lang_specific_driver): Use double quotes in error + message. + Mon Jul 3 16:53:43 2000 Clinton Popetz <cpopetz@cygnus.com> * calls.c (emit_library_call_value_1): Use valreg instead diff --git a/gcc/cppspec.c b/gcc/cppspec.c index 10c48d3..c6bbafd 100644 --- a/gcc/cppspec.c +++ b/gcc/cppspec.c @@ -125,7 +125,7 @@ lang_specific_driver (in_argc, in_argv, in_added_libraries) need_E = 0; else if (argv[i][1] == 'S' || argv[i][1] == 'c') { - fatal ("`%s' is not a legal option to the preprocessor", + fatal ("\"%s\" is not a legal option to the preprocessor", argv[i]); return; } |