From: Martin Mares Date: Mon, 17 Jun 2013 14:53:25 +0000 (+0200) Subject: Silence "missing case" warnings X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=5c83b24d2deac4537470b7810360a949eb81d930;p=netgrind.git Silence "missing case" warnings --- diff --git a/netgrind/http.c b/netgrind/http.c index b329170..ee7b4fc 100644 --- a/netgrind/http.c +++ b/netgrind/http.c @@ -233,6 +233,7 @@ static void http_close(struct flow *f, int cause, u64 when) case HTTP_CONNECT: http_report(f, s, when, "FIN"); break; + default: ; } pkt_flush_queue(&s->rx_queue); pkt_flush_queue(&s->tx_queue);