From 18fa319d7bcfcad9b2d783c069d660d5b6e44f03 Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Tue, 4 Jul 2000 00:01:11 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 5 +++++ gcc/cppspec.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 11e5173d996..4aced4a4d50 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-07-03 Zack Weinberg + + * cppspec.c (lang_specific_driver): Use double quotes in error + message. + Mon Jul 3 16:53:43 2000 Clinton Popetz * calls.c (emit_library_call_value_1): Use valreg instead diff --git a/gcc/cppspec.c b/gcc/cppspec.c index 10c48d32d0a..c6bbafd68e4 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; }