mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-29 19:00:57 +02:00
Got rid of a gcc-3.2 compiler warning.
This commit is contained in:
parent
c2b5a21ae5
commit
f303c735fd
1 changed files with 2 additions and 1 deletions
|
@ -378,8 +378,9 @@ zzlex(void)
|
||||||
break;
|
break;
|
||||||
case '0':
|
case '0':
|
||||||
if (*ptr == 'x' || *ptr == 'X') {
|
if (*ptr == 'x' || *ptr == 'X') {
|
||||||
|
ptr++;
|
||||||
/* Should we set lastbase here? */
|
/* Should we set lastbase here? */
|
||||||
yyval.u.l = zstrtol(++ptr, &ptr, lastbase = 16);
|
yyval.u.l = zstrtol(ptr, &ptr, lastbase = 16);
|
||||||
return NUM;
|
return NUM;
|
||||||
}
|
}
|
||||||
else if (isset(OCTALZEROES) &&
|
else if (isset(OCTALZEROES) &&
|
||||||
|
|
Loading…
Reference in a new issue