aboutsummaryrefslogtreecommitdiff
path: root/lib/easy.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2014-11-16 18:16:27 +0000
committerSteve Holme <steve_holme@hotmail.com>2014-11-16 18:21:03 +0000
commit591d5ca41b7b7a9c5fb2af1d315b7657dc0fb3c1 (patch)
treeb301790d963427056466217ec5cae727f74a95be /lib/easy.c
parent4be80d5109a340973dc6ce0221ec5c5761587df0 (diff)
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.c4
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;