Skip to content

Commit b7b9f7f

Browse files
committed
Typo: newline after fatal error
1 parent 93715a5 commit b7b9f7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

m100-tokenize.lex

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

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

0 commit comments

Comments
 (0)