COMP: Remove more warnings

This commit is contained in:
Andy Cedilnik 2005-03-02 11:04:32 -05:00
parent 78d85f4af8
commit 66a61e9c74
2 changed files with 4 additions and 4 deletions

View File

@ -373,7 +373,7 @@ xmlrpc_client_call_va(xmlrpc_env * const envP,
va_list args) {
xmlrpc_value * argP;
xmlrpc_value * retval;
xmlrpc_value * retval = 0;
xmlrpc_env argenv;
const char * suffix;
@ -805,7 +805,7 @@ asynchComplete(call_info * const callInfoP,
failed the request.
-----------------------------------------------------------------------------*/
xmlrpc_env env;
xmlrpc_value * responseP;
xmlrpc_value * responseP = 0;
xmlrpc_env_init(&env);

View File

@ -123,7 +123,7 @@ xmlrpc_atoi(xmlrpc_env *env, char *str, size_t stringLength,
i = 0;
/* Check for leading white space. */
if (isspace(str[0]))
if (isspace((int)(str[0])))
XMLRPC_FAIL1(env, XMLRPC_PARSE_ERROR,
"\"%s\" must not contain whitespace", str);
@ -171,7 +171,7 @@ xmlrpc_atod(xmlrpc_env *env, char *str, size_t stringLength)
d = 0.0;
/* Check for leading white space. */
if (isspace(str[0]))
if (isspace((int)(str[0])))
XMLRPC_FAIL1(env, XMLRPC_PARSE_ERROR,
"\"%s\" must not contain whitespace", str);