mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
fix case sensitive issue, fixes newer flex versions by using a macro instead of
a hardcoded variable. Pretty much trivial. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@362 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
parent
14cc48b773
commit
d4161bcf3e
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ YY_BUFFER_STATE bstack = NULL;
|
|||
void
|
||||
switchin(FILE *f){
|
||||
YY_BUFFER_STATE b;
|
||||
bstack = yy_current_buffer;
|
||||
bstack = YY_CURRENT_BUFFER;
|
||||
b = yy_create_buffer(f, 8192);
|
||||
yy_switch_to_buffer(b);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue