Fix build.

This commit is contained in:
Nicholas Hastings 2014-06-10 12:30:04 -04:00
parent cd0d31805c
commit e4328f9211

View File

@ -2136,9 +2136,9 @@ SC_FUNC int lex(cell *lexvalue,char **lexsym)
if (sc_packstr)
stringflags ^= ISPACKED; /* invert packed/unpacked parameters */
if ((stringflags & ISPACKED)!=0)
packedstring(_lexstr,stringflags);
packedstring((unsigned char *)_lexstr,stringflags);
else
unpackedstring(_lexstr,stringflags);
unpackedstring((unsigned char *)_lexstr,stringflags);
} else if (*lptr=='\'') { /* character literal */
lptr+=1; /* skip quote */
_lextok=tNUMBER;