summaryrefslogtreecommitdiff
path: root/xml2tsv.c
diff options
context:
space:
mode:
Diffstat (limited to 'xml2tsv.c')
-rw-r--r--xml2tsv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xml2tsv.c b/xml2tsv.c
index 960c2de..dd5c64b 100644
--- a/xml2tsv.c
+++ b/xml2tsv.c
@@ -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) {