typeck.c (string_conv_p): Remove spurious quotation mark in warning.

* typeck.c (string_conv_p): Remove spurious quotation mark in
	warning.

From-SVN: r115368
This commit is contained in:
Martin Michlmayr 2006-07-12 12:55:01 +00:00 committed by Mike Stump
parent f27026943b
commit 4b64175082
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-07-12 Martin Michlmayr <tbm@cyrius.com>
* typeck.c (string_conv_p): Remove spurious quotation mark in
warning.
2006-07-07 Lee Millward <lee.millward@gmail.com>
Andrew Pinski <pinskia@gmail.com>

View File

@ -1627,7 +1627,9 @@ string_conv_p (tree totype, tree exp, int warn)
/* This warning is not very useful, as it complains about printf. */
if (warn)
warning (OPT_Wwrite_strings, "deprecated conversion from string constant to %qT'", totype);
warning (OPT_Wwrite_strings,
"deprecated conversion from string constant to %qT",
totype);
return 1;
}