diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-11-16 18:16:27 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-11-16 18:21:03 +0000 |
commit | 591d5ca41b7b7a9c5fb2af1d315b7657dc0fb3c1 (patch) | |
tree | b301790d963427056466217ec5cae727f74a95be /lib/easy.c | |
parent | 4be80d5109a340973dc6ce0221ec5c5761587df0 (diff) | |
download | curl-591d5ca41b7b7a9c5fb2af1d315b7657dc0fb3c1.tar.gz |
easy.c: Fixed compilation warning when no verbose string support
warning: unused parameter 'easy'
Diffstat (limited to 'lib/easy.c')
-rw-r--r-- | lib/easy.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/easy.c b/lib/easy.c index 5f14fede3..b547d1dbe 100644 --- a/lib/easy.c +++ b/lib/easy.c @@ -491,6 +491,10 @@ static int events_socket(CURL *easy, /* easy handle */ struct events *ev = userp; struct socketmonitor *m; struct socketmonitor *prev=NULL; + +#if defined(CURL_DISABLE_VERBOSE_STRINGS) + (void) easy; +#endif (void)socketp; m = ev->list; |