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:
Stefan Reinauer 2007-06-19 09:52:41 +00:00
parent 14cc48b773
commit d4161bcf3e

View file

@ -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);