mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 17:36:11 +00:00
Lex integers as unsigned long instead of signed int, fixing the immediate test.
This commit is contained in:
parent
d72f5c9828
commit
d1b8791928
@ -294,7 +294,7 @@ int saved_state = INITIAL;
|
||||
}
|
||||
|
||||
[0-9]* {
|
||||
yylval.integer = atoi(yytext);
|
||||
yylval.integer = strtoul(yytext, NULL, 10);
|
||||
return INTEGER;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user