]> granicus.if.org Git - flex/commit
Fixed declaration mismatch in yy_fatal_error.
authorTobias Klauser <tklauser@distanz.ch>
Wed, 27 Jan 2016 12:58:08 +0000 (13:58 +0100)
committerWill Estes <westes575@gmail.com>
Wed, 27 Jan 2016 22:01:14 +0000 (17:01 -0500)
commit4936786fc5b748a071687e8d25ae042374e374e6
treefaea6e72ee74de8529095d6d74b01c2b3b64ae21
parent24a1589f866fd00e609530458d109a8567a98a10
Fixed declaration mismatch in yy_fatal_error.

The prototype declares yy_fatal_error parameter as "const char msg[]"
while the definition uses "const char* msg" (introduced by commit
e9d5fc713f61b) which causes the sparse static checkers to produce an
error.

Fix this by adjusting the definition to use "const char* msg" as well.
Also change the C++ version accordingly so it matches the declaration in
FlexLexer.hpp.
src/flex.skl