aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpplib.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cpplib.c')
-rw-r--r--gcc/cpplib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpplib.c b/gcc/cpplib.c
index 8d408d0..a751ae7 100644
--- a/gcc/cpplib.c
+++ b/gcc/cpplib.c
@@ -3246,7 +3246,7 @@ convert_string (pfile, result, in, limit, handle_escapes)
if (handle_escapes)
{
char *bpc = (char *) in;
- int i = (U_CHAR) cpp_parse_escape (pfile, &bpc, 0x00ffU);
+ int i = (U_CHAR) cpp_parse_escape (pfile, &bpc, 0x00ff);
in = (U_CHAR *) bpc;
if (i >= 0)
*result++ = (U_CHAR)c;