diff options
| author | Alan Antonuk <alan.antonuk@gmail.com> | 2015-06-01 22:27:01 -0700 |
|---|---|---|
| committer | Alan Antonuk <alan.antonuk@gmail.com> | 2015-06-01 22:27:01 -0700 |
| commit | 6f9b6183203d6a0e8a0cdaea02129449a70dfcf0 (patch) | |
| tree | 067bc5616008639ce487cbc18e5e50810d2c7842 | |
| parent | 816cbfcf3fae9e8aeba9a4d4cf1a942c11d30615 (diff) | |
| download | rabbitmq-c-warnfix.tar.gz | |
lib: amqp_ssl_socket_send ign unused parameter.warnfix
| -rw-r--r-- | librabbitmq/amqp_openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/librabbitmq/amqp_openssl.c b/librabbitmq/amqp_openssl.c index cdbf1fd..d666638 100644 --- a/librabbitmq/amqp_openssl.c +++ b/librabbitmq/amqp_openssl.c @@ -75,7 +75,7 @@ struct amqp_ssl_socket_t { }; static ssize_t amqp_ssl_socket_send(void *base, const void *buf, size_t len, - int flags) { + AMQP_UNUSED int flags) { struct amqp_ssl_socket_t *self = (struct amqp_ssl_socket_t *)base; ssize_t res; if (-1 == self->sockfd) { |
