mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
Changing uneeded const specifier for given va_list type.
This commit is contained in:
@ -86,7 +86,7 @@ void
|
|||||||
xmlrpc_set_fault_formatted_v(xmlrpc_env * const envP,
|
xmlrpc_set_fault_formatted_v(xmlrpc_env * const envP,
|
||||||
int const code,
|
int const code,
|
||||||
const char * const format,
|
const char * const format,
|
||||||
va_list const args) {
|
va_list args) {
|
||||||
|
|
||||||
const char * faultDescription;
|
const char * faultDescription;
|
||||||
|
|
||||||
|
@ -140,7 +140,7 @@ void
|
|||||||
xmlrpc_set_fault_formatted_v(xmlrpc_env * const envP,
|
xmlrpc_set_fault_formatted_v(xmlrpc_env * const envP,
|
||||||
int const code,
|
int const code,
|
||||||
const char * const format,
|
const char * const format,
|
||||||
va_list const args);
|
va_list args);
|
||||||
|
|
||||||
/* The same as the above, but using a printf-style format string. */
|
/* The same as the above, but using a printf-style format string. */
|
||||||
void
|
void
|
||||||
|
Reference in New Issue
Block a user