diff options
Diffstat (limited to 'xml2tsv.c')
-rw-r--r-- | xml2tsv.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -177,7 +177,11 @@ xmltagend(XMLParser *x, const char *t, size_t tl, int isshort) if (strcmp(t, tag)){ fprintf(stderr, "Error: tag-end '%s' closes tag '%s'", t, tag); } - /* printf("\n"); */ + + if (isshort) { + printf("\n"); + print_cur_str(stdout, &st); + } } void |