1
0
mirror of https://github.com/moparisthebest/curl synced 2025-01-11 05:58:01 -05:00

hiperfifo: remove unused variable

Closes https://github.com/curl/curl/pull/3919
This commit is contained in:
Marcel Raad 2019-05-21 11:18:10 +02:00
parent f91baf842a
commit acb097ca7f
No known key found for this signature in database
GPG Key ID: 33C416EFAE4D6F02

View File

@ -146,7 +146,6 @@ static void mcode_or_die(const char *where, CURLMcode code)
static int multi_timer_cb(CURLM *multi _Unused, long timeout_ms, GlobalInfo *g)
{
struct timeval timeout;
CURLMcode rc;
timeout.tv_sec = timeout_ms/1000;
timeout.tv_usec = (timeout_ms%1000)*1000;