aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-lex.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/c-lex.c')
-rw-r--r--gcc/c-lex.c2
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;