easy.c: Fixed compilation warning when no verbose string support

warning: unused parameter 'easy'
This commit is contained in:
Steve Holme 2014-11-16 18:16:27 +00:00
parent 4be80d5109
commit 591d5ca41b

View File

@ -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;