comparison Plugins/Visualization/paranormal/pn/pnintegeroption.c @ 1593:6647d5cc717c trunk

[svn] Additional (PPC?) warning squashing by Joseph Jezak from Gentoo.
author chainsaw
date Thu, 24 Aug 2006 14:55:06 -0700
parents 752949e9aec4
children
comparison
equal deleted inserted replaced
1592:752949e9aec4 1593:6647d5cc717c
140 { 140 {
141 pn_error ("unable to load a PnIntegerOption from xml node \"%s\"", node->name); 141 pn_error ("unable to load a PnIntegerOption from xml node \"%s\"", node->name);
142 return; 142 return;
143 } 143 }
144 144
145 val_str = xmlNodeGetContent (integer_option_node); 145 val_str = (gchar *)xmlNodeGetContent (integer_option_node);
146 146
147 if (val_str) 147 if (val_str)
148 pn_integer_option_set_value (integer_option, strtol (val_str, NULL, 0)); 148 pn_integer_option_set_value (integer_option, strtol (val_str, NULL, 0));
149 else 149 else
150 { 150 {