Skip to content

Commit

Permalink
Lexer: Properly match EOF preprocessor tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
liviuchircu committed Feb 25, 2019
1 parent 9bf229c commit 9c2300c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cfg.lex
Expand Up @@ -841,7 +841,7 @@ SPACE [ ]
BEGIN(INITIAL);
}

<PPTOK_FILEEND> {
<PPTOK_FILEEND>{CR} {
if (cfg_pop() != 0) {
LM_ERR("internal error during cfg_pop()\n");
exit(-1);
Expand Down

0 comments on commit 9c2300c

Please sign in to comment.