Fix missing newline in a dbgPrint

This commit is contained in:
Rangi
2021-02-17 13:14:02 -05:00
parent 5c1ae4ce22
commit 39c179aa32

View File

@@ -2339,7 +2339,7 @@ restart:
if (!lexerState->capturing) { if (!lexerState->capturing) {
if (!yywrap()) if (!yywrap())
goto restart; goto restart;
dbgPrint("Reached end of input."); dbgPrint("Reached end of input.\n");
return T_EOF; return T_EOF;
} }
} }