Commit b4eadc3d by Kaveh R. Ghazi Committed by Dave Brolley

cpplib.c (convert_string): Use `0x00ff', not `0x00ffU'.

Tue Dec  8 11:58:51 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
	* cpplib.c (convert_string): Use `0x00ff', not `0x00ffU'.

From-SVN: r24182
parent 6785b077
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.
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment