Skip to content

Commit

Permalink
Typo: newline after fatal error
Browse files Browse the repository at this point in the history
  • Loading branch information
hackerb9 committed Jul 30, 2024
1 parent 93715a5 commit b7b9f7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion m100-tokenize.lex
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

^[[:space:]]*[0-9]+[ ]? {
if (ftell(yyout) >= 0x8000) {
fprintf(stderr, "Program too large to fit in 32K RAM");
fprintf(stderr, "Program too large to fit in 32K RAM\n");
exit(1);
}
ptr[nlines++] = ftell(yyout); /* Cache the location of the current line */
Expand Down

0 comments on commit b7b9f7f

Please sign in to comment.