From 08d6590e06651c856015f785d89b43044081a224 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Mon, 4 Feb 2008 20:43:43 +0100 Subject: [PATCH 1/1] http_send.c: Kill unused variable "i". --- http_send.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/http_send.c b/http_send.c index f8ee656b..ce2fd09c 100644 --- a/http_send.c +++ b/http_send.c @@ -98,16 +98,14 @@ static void http_send(long unsigned current_chunk, static void http_post_select(fd_set *rfds, __a_unused fd_set *wfds) { - int ret, i = -1, match; + int ret, match; struct sender_client *sc, *tmp; struct private_http_sender_data *phsd; if (listen_fd < 0) return; list_for_each_entry_safe(sc, tmp, &clients, node) { - i++; phsd = sc->private_data; -// PARA_DEBUG_LOG("handling client %d: %s\n", i, remote_name(sc->fd)); switch (phsd->status) { case HTTP_STREAMING: /* nothing to do */ break; -- 2.39.2