浏览代码

terminate error message with newline

Matthias-Christian Ott 17 年之前
父节点
当前提交
50b4785f26
共有 1 个文件被更改,包括 1 次插入1 次删除
  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++;
 			}