From: Marcel Raad Date: Tue, 21 May 2019 09:18:10 +0000 (+0200) Subject: hiperfifo: remove unused variable X-Git-Tag: curl-7_65_1~54 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=acb097ca7f2ac6304bc664dd9154114fd27bffca;p=thirdparty%2Fcurl.git hiperfifo: remove unused variable Closes https://github.com/curl/curl/pull/3919 --- diff --git a/docs/examples/hiperfifo.c b/docs/examples/hiperfifo.c index c8e8bfdf1b..d1228f8298 100644 --- a/docs/examples/hiperfifo.c +++ b/docs/examples/hiperfifo.c @@ -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;