summaryrefslogtreecommitdiff
path: root/librabbitmq/amqp_api.c
diff options
context:
space:
mode:
authorDavid Wragg <david@rabbitmq.com>2010-07-28 01:08:49 +0100
committerDavid Wragg <david@rabbitmq.com>2010-07-28 01:08:49 +0100
commit27235c0046dfc87b4f57c652681df4436fce3e0e (patch)
tree1f8bac3beade9b6e3907c322ea5131d703263943 /librabbitmq/amqp_api.c
parentd0509667889cf799a252bb0c4e8b2d86d75645b6 (diff)
downloadrabbitmq-c-github-ask-27235c0046dfc87b4f57c652681df4436fce3e0e.tar.gz
Fix "const char *" to "void *" conversion warnings
Functions returning a heap-allocated string should return a "char *", not a "const char *": Because the result is heap-allocated and becomes the responsibility of the caller, it is certainly modifiable. And the pointer will likely get passed to free(), triggering a conversion warning from gcc. So remove all the relevant consts.
Diffstat (limited to 'librabbitmq/amqp_api.c')
-rw-r--r--librabbitmq/amqp_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/librabbitmq/amqp_api.c b/librabbitmq/amqp_api.c
index 722bc86..2b1ed54 100644
--- a/librabbitmq/amqp_api.c
+++ b/librabbitmq/amqp_api.c
@@ -69,7 +69,7 @@ static const char *client_error_strings[ERROR_MAX] = {
"connection closed unexpectedly", /* ERROR_CONNECTION_CLOSED */
};
-const char *amqp_error_string(int err)
+char *amqp_error_string(int err)
{
const char *str;
int category = (err & ERROR_CATEGORY_MASK);