summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-12-06 16:38:05 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-12-06 16:38:05 +0000
commitd20e9cbbb311bf2ed457fc53283f4b31ea36ee91 (patch)
treeee17e109482562d1affb5af405e89da1a5130142
parent2a4dde9763617bd547b416a0e541654581a4cc59 (diff)
downloadlasso-d20e9cbbb311bf2ed457fc53283f4b31ea36ee91.tar.gz
lasso-d20e9cbbb311bf2ed457fc53283f4b31ea36ee91.tar.xz
lasso-d20e9cbbb311bf2ed457fc53283f4b31ea36ee91.zip
Fixed a stupid copy/paste
-rw-r--r--lasso/xml/xml.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lasso/xml/xml.c b/lasso/xml/xml.c
index 6d1e8399..b07b1179 100644
--- a/lasso/xml/xml.c
+++ b/lasso/xml/xml.c
@@ -514,8 +514,8 @@ lasso_node_impl_init_from_xml(LassoNode *node, xmlNode *xmlnode)
*location = g_list_append(*location, n);
} else if (snippet->type == SNIPPET_LIST_CONTENT) {
GList **location = value;
- LassoNode *n = xmlNodeGetContent(t);
- *location = g_list_append(*location, n);
+ xmlChar *s = xmlNodeGetContent(t);
+ *location = g_list_append(*location, s);
}
break;
}