aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/cpplib.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 78a1b39..10fc71b 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+Tue Dec 8 11:58:51 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * cpplib.c (convert_string): Use `0x00ff', not `0x00ffU'.
+
Tue Dec 8 09:28:36 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* dbxout.c: If USG is defined use gstab.h, even if HAVE_STAB_H is set.
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;