Skip to content
Snippets Groups Projects
Commit de255af8 authored by Rene Brun's avatar Rene Brun
Browse files

Fix compiler warnings.

git-svn-id: http://root.cern.ch/svn/root/trunk@20611 27541ba8-7e3a-0410-8455-c3a389f83636
parent 14e7f770
No related merge requests found
......@@ -68,7 +68,7 @@ double get_double(xmlrpc_env *env, xmlrpc_value *in)
char* get_timestamp(xmlrpc_env *env, xmlrpc_value *in)
{
char *s = "";
char *s = 0;
xmlrpc_parse_value(env, in, "8", &s);
report_error(env,"timestamp");
......@@ -77,7 +77,7 @@ char* get_timestamp(xmlrpc_env *env, xmlrpc_value *in)
char* get_string(xmlrpc_env *env, xmlrpc_value *in){
char* s = "";
char* s = 0;
xmlrpc_parse_value(env, in, "s", &s);
report_error(env,"string");
......@@ -87,7 +87,7 @@ char* get_string(xmlrpc_env *env, xmlrpc_value *in){
char* get_base64(xmlrpc_env *env, xmlrpc_value *in)
{
char *s = "";
char *s = 0;
xmlrpc_parse_value(env, in, "6", &s);
report_error(env,"base64");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment