File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -466,7 +466,7 @@ xmlrpc_build_value(xmlrpc_env * const env,
466
466
void
467
467
xmlrpc_build_value_va (xmlrpc_env * const env ,
468
468
const char * const format ,
469
- va_list args ,
469
+ va_list const args ,
470
470
xmlrpc_value * * const valPP ,
471
471
const char * * const tailP );
472
472
480
480
xmlrpc_decompose_value_va (xmlrpc_env * const envP ,
481
481
xmlrpc_value * const value ,
482
482
const char * const format ,
483
- va_list args );
483
+ va_list const args );
484
484
485
485
/* xmlrpc_parse_value... is the same as xmlrpc_decompose_value... except
486
486
that it doesn't do proper memory management -- it returns xmlrpc_value's
500
500
xmlrpc_parse_value_va (xmlrpc_env * const envP ,
501
501
xmlrpc_value * const value ,
502
502
const char * const format ,
503
- va_list args );
503
+ va_list const args );
504
504
505
505
/*=========================================================================
506
506
** Encoding XML
Original file line number Diff line number Diff line change @@ -2693,8 +2693,8 @@ processContentToken(XML_Parser const xmlParserP,
2693
2693
case XML_TOK_INVALID :
2694
2694
* eventPP = * nextP ;
2695
2695
* errorCodeP = XML_ERROR_INVALID_TOKEN ;
2696
- xmlrpc_asprintf (errorP , "Invalid token, starting %u bytes in" ,
2697
- * nextP - s );
2696
+ xmlrpc_asprintf (errorP , "Invalid token, starting %ld bytes in" ,
2697
+ ( long )( * nextP - s ) );
2698
2698
break ;
2699
2699
case XML_TOK_PARTIAL :
2700
2700
if (nextPtr ) {
You can’t perform that action at this time.
0 commit comments