diff options
Diffstat (limited to 'world/node_toxml.c')
-rw-r--r-- | world/node_toxml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/world/node_toxml.c b/world/node_toxml.c index 2099c6a8..b7cd6c15 100644 --- a/world/node_toxml.c +++ b/world/node_toxml.c @@ -14,7 +14,7 @@ static void xmlmeta(fz_metanode *node, int level) fz_node *child; indent(level); - printf("<meta>\n"); + printf("<meta name=\"%s\">\n", node->name); for (child = node->super.first; child; child = child->next) xmlnode(child, level + 1); |