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:
parent
c2b5a21ae5
commit
f303c735fd
1 changed files with 2 additions and 1 deletions
|
@ -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) &&
|
||||
|
|
Loading…
Reference in a new issue