1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-25 05:31:19 +02:00

Got rid of a gcc-3.2 compiler warning.

This commit is contained in:
Wayne Davison 2002-10-30 19:29:42 +00:00
parent c2b5a21ae5
commit f303c735fd

View file

@ -378,8 +378,9 @@ zzlex(void)
break;
case '0':
if (*ptr == 'x' || *ptr == 'X') {
ptr++;
/* Should we set lastbase here? */
yyval.u.l = zstrtol(++ptr, &ptr, lastbase = 16);
yyval.u.l = zstrtol(ptr, &ptr, lastbase = 16);
return NUM;
}
else if (isset(OCTALZEROES) &&