Author: stepan Date: 2007-06-19 11:52:41 +0200 (Tue, 19 Jun 2007) New Revision: 362
Modified: LinuxBIOSv3/util/dtc/dtc-lexer.l Log: 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
Modified: LinuxBIOSv3/util/dtc/dtc-lexer.l =================================================================== --- LinuxBIOSv3/util/dtc/dtc-lexer.l 2007-06-19 07:03:35 UTC (rev 361) +++ LinuxBIOSv3/util/dtc/dtc-lexer.l 2007-06-19 09:52:41 UTC (rev 362) @@ -49,7 +49,7 @@ 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);