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:
Christopher James Lahey
2000-04-14 21:10:01 +00:00
committed by Chris Lahey
parent 0937d957d6
commit cb0371df5b
2 changed files with 2 additions and 2 deletions

View File

@ -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);