c-typeck.c (build_unary_op): Don't wrap msgid argument of readonly_warning in _().
authorJoseph Myers <jsm28@cam.ac.uk>
Tue, 15 Jan 2002 16:28:47 +0000 (16:28 +0000)
committerJoseph Myers <jsm28@gcc.gnu.org>
Tue, 15 Jan 2002 16:28:47 +0000 (16:28 +0000)
* c-typeck.c (build_unary_op): Don't wrap msgid argument of
readonly_warning in _().

From-SVN: r48873

gcc/ChangeLog
gcc/c-typeck.c

index 4161461308620492e0ee1d2901836b6aa669116d..958f21117feb96f7b01acc4c2388faf2c6f3e0d1 100644 (file)
@@ -1,3 +1,8 @@
+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.
index fad00abbec37ac61913ad5f735f063aa4b68bb5c..5fb05ef5d67f8d179550c1fba990b9f48b727c2f 100644 (file)
@@ -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);