diff options
author | KatolaZ <katolaz@freaknet.org> | 2020-01-05 14:53:49 +0000 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2020-01-05 14:53:49 +0000 |
commit | c974d52007f0362f455b6a544e1ff2f14929a9ee (patch) | |
tree | 5d888ba17d2ec5491293437ddd372de69fba2838 /xml2tsv.c | |
parent | 8401a64f99c614fa5e32c1b34e5499e0ab948d85 (diff) |
add newline to error printouts
Diffstat (limited to 'xml2tsv.c')
-rw-r--r-- | xml2tsv.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -205,11 +205,11 @@ xmltagend(XMLParser *x, const char *t, size_t tl, int isshort) { char *tag; if (stack_empty(&st)){ - fprintf(stderr, "Error: tag-end '%s' before any open tag", t); + fprintf(stderr, "Error: tag-end '%s' before any open tag\n", t); } tag = stack_pop(&st); if (strcmp(t, tag)){ - fprintf(stderr, "Error: tag-end '%s' closes tag '%s'", t, tag); + fprintf(stderr, "Error: tag-end '%s' closes tag '%s'\n", t, tag); } if (isshort) { |