summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Raad <Marcel.Raad@teamviewer.com>2019-05-21 11:18:10 +0200
committerMarcel Raad <Marcel.Raad@teamviewer.com>2019-05-22 10:06:29 +0200
commitacb097ca7f2ac6304bc664dd9154114fd27bffca (patch)
treeb3595249cf565678be90c792de682b273ec1d275
parentf91baf842ac869f6a849ce4ac4c5ede8a3b49fd2 (diff)
downloadcurl-acb097ca7f2ac6304bc664dd9154114fd27bffca.tar.gz
hiperfifo: remove unused variable
Closes https://github.com/curl/curl/pull/3919
-rw-r--r--docs/examples/hiperfifo.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/examples/hiperfifo.c b/docs/examples/hiperfifo.c
index c8e8bfdf1..d1228f829 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;