diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-03-06 08:27:32 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-03-06 08:27:32 +0800 |
commit | f21c9935ef2b5e4cec61696b9e0d445a729766cc (patch) | |
tree | cee6bf9ac7b5af4c2846c8f8766ef9ae10d137d7 /e-util/e-xml-utils.c-56826 | |
parent | 41daf5fcbfcd5abe2000fa2a6fab8e9ba97c1a21 (diff) | |
download | gsoc2013-evolution-f21c9935ef2b5e4cec61696b9e0d445a729766cc.tar gsoc2013-evolution-f21c9935ef2b5e4cec61696b9e0d445a729766cc.tar.gz gsoc2013-evolution-f21c9935ef2b5e4cec61696b9e0d445a729766cc.tar.bz2 gsoc2013-evolution-f21c9935ef2b5e4cec61696b9e0d445a729766cc.tar.lz gsoc2013-evolution-f21c9935ef2b5e4cec61696b9e0d445a729766cc.tar.xz gsoc2013-evolution-f21c9935ef2b5e4cec61696b9e0d445a729766cc.tar.zst gsoc2013-evolution-f21c9935ef2b5e4cec61696b9e0d445a729766cc.zip |
Fixed e_xml_set_integer_prop_by_name.
2000-03-05 Christopher James Lahey <clahey@helixcode.com>
* e-util/e-xml-utils.c: Fixed e_xml_set_integer_prop_by_name.
svn path=/trunk/; revision=2066
Diffstat (limited to 'e-util/e-xml-utils.c-56826')
-rw-r--r-- | e-util/e-xml-utils.c-56826 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/e-util/e-xml-utils.c-56826 b/e-util/e-xml-utils.c-56826 index 7eb54105d1..db9cfafb92 100644 --- a/e-util/e-xml-utils.c-56826 +++ b/e-util/e-xml-utils.c-56826 @@ -48,7 +48,7 @@ e_xml_get_integer_prop_by_name(xmlNode *parent, xmlChar *prop_name) void e_xml_set_integer_prop_by_name(xmlNode *parent, xmlChar *prop_name, int value) { - xmlChar *value = g_strdup_printf("%d", value); - xmlSetProp(parent, prop_name, value); - g_free (value); + xmlChar *valuestr = g_strdup_printf("%d", value); + xmlSetProp(parent, prop_name, valuestr); + g_free (valuestr); } |