summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDebarshi Ray <debarshir@gnome.org>2017-10-13 18:53:39 +0200
committerDebarshi Ray <debarshir@gnome.org>2017-10-17 16:45:25 +0200
commita34d02947c4f102e6d16b9d328941a4b2946c8e8 (patch)
tree4c8b7f533534e09703fd7643e44d2ade6af1d2fb
parenta09ea6bd74d6234be8456e7039403bc1c1d078bd (diff)
downloadlibrest-a34d02947c4f102e6d16b9d328941a4b2946c8e8.tar.gz
xml-node: Remove stray blank space
This had broken tests/xml.c. Fallout from 61a7b231bd8b9d1b8d02dca120389e79d38b428d https://bugzilla.gnome.org/show_bug.cgi?id=788960
-rw-r--r--rest/rest-xml-node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rest/rest-xml-node.c b/rest/rest-xml-node.c
index a8156db..d3a7c99 100644
--- a/rest/rest-xml-node.c
+++ b/rest/rest-xml-node.c
@@ -291,7 +291,7 @@ rest_xml_node_print (RestXmlNode *node)
g_hash_table_iter_init (&iter, node->attrs);
while (g_hash_table_iter_next (&iter, &key, &value))
- g_string_append_printf (xml, " %s =\'%s\'", (char *)key, (char *)value);
+ g_string_append_printf (xml, " %s=\'%s\'", (char *)key, (char *)value);
g_string_append (xml, ">");