1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-15 06:27:36 +00:00

Fixed exit code #974

This commit is contained in:
Stefan
2019-11-12 11:23:23 +01:00
committed by greg-king5
parent ac4866c027
commit 659d1729eb

View File

@@ -409,7 +409,7 @@ yylook()
if(testbreak==5) if(testbreak==5)
{ {
fprintf(yyout,"yylook: error, aborted after 5 loops\n"); fprintf(yyout,"yylook: error, aborted after 5 loops\n");
exit(0); exit(EXIT_FAILURE);
} }
testbreak++; testbreak++;