Browse Source

terminate error message with newline

Matthias-Christian Ott 17 năm trước cách đây
mục cha
commit
50b4785f26
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      std.c

+ 1 - 1
std.c

@@ -166,7 +166,7 @@ parseesc(void) {
 				s |= QuestionMark; 
 			else if(c == ';') {
 				if(!(s & Digit))
-					eprint("syntax error");
+					eprint("syntax error\n");
 				s &= ~Digit;
 				j++;
 			}