Commit 57771fe8 by Joseph Myers Committed by Joseph Myers

c-typeck.c (build_unary_op): Don't wrap msgid argument of readonly_warning in _().

	* c-typeck.c (build_unary_op): Don't wrap msgid argument of
	readonly_warning in _().

From-SVN: r48873
parent 0e83ceb1
2002-01-15 Joseph S. Myers <jsm28@cam.ac.uk>
* c-typeck.c (build_unary_op): Don't wrap msgid argument of
readonly_warning in _().
2002-01-15 Douglas B Rupp <rupp@gnat.com>
* gcc.c (delete_if_ordinary): Backout previous change.
......
......@@ -3085,7 +3085,7 @@ build_unary_op (code, xarg, flag)
readonly_warning (arg,
((code == PREINCREMENT_EXPR
|| code == POSTINCREMENT_EXPR)
? _("increment") : _("decrement")));
? "increment" : "decrement"));
if (TREE_CODE (TREE_TYPE (arg)) == BOOLEAN_TYPE)
val = boolean_increment (code, arg);
......
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