COMP: Remove more warnings
This commit is contained in:
parent
78d85f4af8
commit
66a61e9c74
@ -373,7 +373,7 @@ xmlrpc_client_call_va(xmlrpc_env * const envP,
|
|||||||
va_list args) {
|
va_list args) {
|
||||||
|
|
||||||
xmlrpc_value * argP;
|
xmlrpc_value * argP;
|
||||||
xmlrpc_value * retval;
|
xmlrpc_value * retval = 0;
|
||||||
xmlrpc_env argenv;
|
xmlrpc_env argenv;
|
||||||
const char * suffix;
|
const char * suffix;
|
||||||
|
|
||||||
@ -805,7 +805,7 @@ asynchComplete(call_info * const callInfoP,
|
|||||||
failed the request.
|
failed the request.
|
||||||
-----------------------------------------------------------------------------*/
|
-----------------------------------------------------------------------------*/
|
||||||
xmlrpc_env env;
|
xmlrpc_env env;
|
||||||
xmlrpc_value * responseP;
|
xmlrpc_value * responseP = 0;
|
||||||
|
|
||||||
xmlrpc_env_init(&env);
|
xmlrpc_env_init(&env);
|
||||||
|
|
||||||
|
@ -123,7 +123,7 @@ xmlrpc_atoi(xmlrpc_env *env, char *str, size_t stringLength,
|
|||||||
i = 0;
|
i = 0;
|
||||||
|
|
||||||
/* Check for leading white space. */
|
/* Check for leading white space. */
|
||||||
if (isspace(str[0]))
|
if (isspace((int)(str[0])))
|
||||||
XMLRPC_FAIL1(env, XMLRPC_PARSE_ERROR,
|
XMLRPC_FAIL1(env, XMLRPC_PARSE_ERROR,
|
||||||
"\"%s\" must not contain whitespace", str);
|
"\"%s\" must not contain whitespace", str);
|
||||||
|
|
||||||
@ -171,7 +171,7 @@ xmlrpc_atod(xmlrpc_env *env, char *str, size_t stringLength)
|
|||||||
d = 0.0;
|
d = 0.0;
|
||||||
|
|
||||||
/* Check for leading white space. */
|
/* Check for leading white space. */
|
||||||
if (isspace(str[0]))
|
if (isspace((int)(str[0])))
|
||||||
XMLRPC_FAIL1(env, XMLRPC_PARSE_ERROR,
|
XMLRPC_FAIL1(env, XMLRPC_PARSE_ERROR,
|
||||||
"\"%s\" must not contain whitespace", str);
|
"\"%s\" must not contain whitespace", str);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user