summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvan Jegen <s.jegen@gmail.com>2016-09-18 15:43:52 +0200
committerSilvan Jegen <s.jegen@gmail.com>2016-09-18 15:43:52 +0200
commitb99107563a5cc26d771057683154ef6893c91871 (patch)
tree568203427320561c17b9ae5eb83e207dc153ec8a
parent031338ed7d701baaf21b12fa284e7d9035cd14bc (diff)
Add a dash to the output
-rw-r--r--mxml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mxml.c b/mxml.c
index 8bb4e32..1d936c8 100644
--- a/mxml.c
+++ b/mxml.c
@@ -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
//