diff options
| author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-12-06 16:38:05 +0000 |
|---|---|---|
| committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-12-06 16:38:05 +0000 |
| commit | d20e9cbbb311bf2ed457fc53283f4b31ea36ee91 (patch) | |
| tree | ee17e109482562d1affb5af405e89da1a5130142 | |
| parent | 2a4dde9763617bd547b416a0e541654581a4cc59 (diff) | |
| download | lasso-d20e9cbbb311bf2ed457fc53283f4b31ea36ee91.tar.gz lasso-d20e9cbbb311bf2ed457fc53283f4b31ea36ee91.tar.xz lasso-d20e9cbbb311bf2ed457fc53283f4b31ea36ee91.zip | |
Fixed a stupid copy/paste
| -rw-r--r-- | lasso/xml/xml.c | 4 |
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; } |
