diff options
author | Silvan Jegen <s.jegen@gmail.com> | 2016-09-18 15:43:52 +0200 |
---|---|---|
committer | Silvan Jegen <s.jegen@gmail.com> | 2016-09-18 15:43:52 +0200 |
commit | b99107563a5cc26d771057683154ef6893c91871 (patch) | |
tree | 568203427320561c17b9ae5eb83e207dc153ec8a | |
parent | 031338ed7d701baaf21b12fa284e7d9035cd14bc (diff) |
Add a dash to the output
-rw-r--r-- | mxml.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ int process(FILE *f) { } if (!strcmp(elename, "article-title")) { - printf("article title:"); + printf("article-title:"); for (mxml_node_t *txt = next->child; txt; txt = mxmlGetNextSibling(txt)) { // Thanks to // |