From 6d1a140375e5a1223a8dfdf96c5c54cb2223412c Mon Sep 17 00:00:00 2001 From: Sanel Zukan Date: Tue, 4 Jun 2013 09:59:35 +0000 Subject: [PATCH] Changing uneeded const specifier for given va_list type. --- ede-bug-tools/ede-bug-report/xmlrpc-c/deps/libutil/error.c | 2 +- .../ede-bug-report/xmlrpc-c/include/xmlrpc-c/string_int.h | 2 +- ede-bug-tools/ede-bug-report/xmlrpc-c/include/xmlrpc-c/util.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ede-bug-tools/ede-bug-report/xmlrpc-c/deps/libutil/error.c b/ede-bug-tools/ede-bug-report/xmlrpc-c/deps/libutil/error.c index fd964d0..b182308 100644 --- a/ede-bug-tools/ede-bug-report/xmlrpc-c/deps/libutil/error.c +++ b/ede-bug-tools/ede-bug-report/xmlrpc-c/deps/libutil/error.c @@ -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; diff --git a/ede-bug-tools/ede-bug-report/xmlrpc-c/include/xmlrpc-c/string_int.h b/ede-bug-tools/ede-bug-report/xmlrpc-c/include/xmlrpc-c/string_int.h index 70d9139..a52c574 100644 --- a/ede-bug-tools/ede-bug-report/xmlrpc-c/include/xmlrpc-c/string_int.h +++ b/ede-bug-tools/ede-bug-report/xmlrpc-c/include/xmlrpc-c/string_int.h @@ -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, ...); diff --git a/ede-bug-tools/ede-bug-report/xmlrpc-c/include/xmlrpc-c/util.h b/ede-bug-tools/ede-bug-report/xmlrpc-c/include/xmlrpc-c/util.h index 5b6e4f5..9387ef7 100644 --- a/ede-bug-tools/ede-bug-report/xmlrpc-c/include/xmlrpc-c/util.h +++ b/ede-bug-tools/ede-bug-report/xmlrpc-c/include/xmlrpc-c/util.h @@ -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