Fixing a warning.
2000-04-14 Christopher James Lahey <clahey@helixcode.com> * e-xml-utils.c: Fixing a warning. svn path=/trunk/; revision=2437
This commit is contained in:

committed by
Chris Lahey

parent
0937d957d6
commit
cb0371df5b
@ -59,7 +59,7 @@ e_xml_set_integer_prop_by_name(xmlNode *parent, xmlChar *prop_name, int value)
|
||||
xmlChar *valuestr;
|
||||
|
||||
g_return_if_fail (parent != NULL);
|
||||
g_return_val_if_fail (prop_name != NULL, 0);
|
||||
g_return_if_fail (prop_name != NULL);
|
||||
|
||||
valuestr = g_strdup_printf("%d", value);
|
||||
xmlSetProp(parent, prop_name, valuestr);
|
||||
|
Reference in New Issue
Block a user