diff options
Diffstat (limited to 'mdocml.c')
-rw-r--r-- | mdocml.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -339,7 +339,7 @@ msg_err(void *arg, int line, int col, const char *msg) p = (struct md_parse *)arg; - xfprintf(stderr, "%s:%d: error: %s (column %d)", + xfprintf(stderr, "%s:%d: error: %s (column %d)\n", p->name, line, msg, col); return(0); } @@ -355,7 +355,7 @@ msg_msg(void *arg, int line, int col, const char *msg) if (0 == p->dbg) return; - xfprintf(stderr, "%s:%d: debug: %s (column %d)", + xfprintf(stderr, "%s:%d: debug: %s (column %d)\n", p->name, line, msg, col); } |