Changing uneeded const specifier for given va_list type.

This commit is contained in:
Sanel Zukan 2013-06-04 09:59:35 +00:00
parent ca5911fe94
commit 6d1a140375
3 changed files with 3 additions and 3 deletions

View File

@ -86,7 +86,7 @@ void
xmlrpc_set_fault_formatted_v(xmlrpc_env * const envP,
int const code,
const char * const format,
va_list const args) {
va_list args) {
const char * faultDescription;

View File

@ -18,7 +18,7 @@ extern const char * const xmlrpc_strsol;
void
xmlrpc_vasprintf(const char ** const retvalP,
const char * const fmt,
va_list varargs);
va_list varargs);
void GNU_PRINTF_ATTR(2,3)
xmlrpc_asprintf(const char ** const retvalP, const char * const fmt, ...);

View File

@ -140,7 +140,7 @@ void
xmlrpc_set_fault_formatted_v(xmlrpc_env * const envP,
int const code,
const char * const format,
va_list const args);
va_list args);
/* The same as the above, but using a printf-style format string. */
void