diff options
author | KatolaZ <katolaz@freaknet.org> | 2020-01-05 15:06:56 +0000 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2020-01-05 15:06:56 +0000 |
commit | 11b4f557a5927fdc9277a071f4c9bcc76cf725df (patch) | |
tree | 295bd1129d8215c7d09489b8154d8a9dce59aff5 /xml2tsv.c | |
parent | c974d52007f0362f455b6a544e1ff2f14929a9ee (diff) |
avoid double printout on short tags
Diffstat (limited to 'xml2tsv.c')
-rw-r--r-- | xml2tsv.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -212,10 +212,11 @@ xmltagend(XMLParser *x, const char *t, size_t tl, int isshort) fprintf(stderr, "Error: tag-end '%s' closes tag '%s'\n", t, tag); } - if (isshort) { +/* if (isshort) { printf("\n"); print_cur_str(stdout, &st); } +*/ } void @@ -232,7 +233,6 @@ xmltagstart(XMLParser *x, const char *t, size_t tl) void xmltagstartparsed(XMLParser *x, const char *t, size_t tl, int isshort) { - /* printf("inside tagstartparsed\n"); */ } int |