1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

easy: define away easy_events() for non-debug builds

This commit is contained in:
Daniel Stenberg 2013-08-25 19:10:02 +02:00
parent 1a911f7ec4
commit 817ceb09e0

View File

@ -712,6 +712,9 @@ static CURLcode easy_events(CURLM *multi)
return wait_or_timeout(multi, &evs);
}
#else /* CURLDEBUG */
/* when not built with debug, this function doesn't exist */
#define easy_events(x) CURLE_NOT_BUILT_IN
#endif
static CURLcode easy_transfer(CURLM *multi)