Commit 4b641750 by Martin Michlmayr Committed by Mike Stump

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
parent f2702694
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>
......
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment