diff options
author | Richard Kenner <kenner@vlsi1.ultra.nyu.edu> | 2000-09-17 14:37:55 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2000-09-17 10:37:55 -0400 |
commit | a52fb89bed45b545f6b714450f81f2d3419f73bb (patch) | |
tree | cc0efddd09d8bdb47f8b5820e6b4f9cd817f17a9 /gcc/c-lex.c | |
parent | 6a51f4a073efca1862f0de46b4de066064a1ee58 (diff) | |
download | gcc-a52fb89bed45b545f6b714450f81f2d3419f73bb.zip gcc-a52fb89bed45b545f6b714450f81f2d3419f73bb.tar.gz gcc-a52fb89bed45b545f6b714450f81f2d3419f73bb.tar.bz2 |
c-decl.c (grokdeclarator): Reorder tests to avoid looking at TYPE_MAIN_VARIANT of ERROR_MARK.
* c-decl.c (grokdeclarator): Reorder tests to avoid looking at
TYPE_MAIN_VARIANT of ERROR_MARK.
* c-lex.c (readescape): Avoid using printf syntax we don't recognize.
From-SVN: r36472
Diffstat (limited to 'gcc/c-lex.c')
-rw-r--r-- | gcc/c-lex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c index f853fd0..b1f555b 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -1009,7 +1009,7 @@ readescape (p, limit, cptr) if (ISGRAPH (c)) pedwarn ("unknown escape sequence '\\%c'", c); else - pedwarn ("unknown escape sequence: '\\' followed by char 0x%.2x", c); + pedwarn ("unknown escape sequence: '\\' followed by char 0x%x", c); *cptr = c; return p; |