mirror of
https://github.com/curl/curl.git
synced 2026-05-30 07:07:30 +03:00
easy.c: Fixed compilation warning when no verbose string support
warning: unused parameter 'easy'
This commit is contained in:
parent
4be80d5109
commit
591d5ca41b
1 changed files with 4 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue