summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@comhem.se>2007-03-30 16:37:17 +0000
committerMikael Magnusson <mikachu@comhem.se>2007-03-30 16:37:17 +0000
commite785e18a2c73e75670c2b46f3b0688bb4de18bdc (patch)
tree6bfbb20e54651ec0aa457ef4be74d9112e53e1a4 /tools
parente6e9ab9224fb51a7cd061a610ab117e3880b17ca (diff)
you didn't say no
Diffstat (limited to 'tools')
-rw-r--r--tools/themetoxml/themetoxml.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/themetoxml/themetoxml.c b/tools/themetoxml/themetoxml.c
index e6f947b2..77e91be3 100644
--- a/tools/themetoxml/themetoxml.c
+++ b/tools/themetoxml/themetoxml.c
@@ -89,8 +89,7 @@ static gboolean read_string(XrmDatabase db, const gchar *rname,
if (XrmGetResource(db, rname, rclass, &rettype, &retvalue) &&
retvalue.addr != NULL) {
- *value = retvalue.addr;
- g_strstrip(*value);
+ *value = g_strstrip(retvalue.addr);
ret = TRUE;
}