Xinqi Bao's Git

terminate error message with newline
[st.git] / std.c
diff --git a/std.c b/std.c
index 5368f67..4afdc3c 100644 (file)
--- a/std.c
+++ b/std.c
@@ -13,7 +13,7 @@
 #include <string.h>
 #include <unistd.h>
 
-#define LENGTH(x)      (sizeof (x) / sizeof (x)[0])
+#define LENGTH(x)      (sizeof(x) / sizeof((x)[0]))
 #define MAX(a,b)       (((a) > (b)) ? (a) : (b))
 #define MIN(a,b)       (((a) < (b)) ? (a) : (b))
 
@@ -166,7 +166,7 @@ parseesc(void) {
                                s |= QuestionMark; 
                        else if(c == ';') {
                                if(!(s & Digit))
-                                       eprint("syntax error");
+                                       eprint("syntax error\n");
                                s &= ~Digit;
                                j++;
                        }