From 644fea11c553811e8231b429b8c820a18b5c4094 Mon Sep 17 00:00:00 2001 From: wonder-mice Date: Wed, 22 Apr 2015 16:30:45 -0700 Subject: [PATCH] Subject: [PATCH] Fix unused n variable warning in http2.c --- lib/http2.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/http2.c b/lib/http2.c index dc38d443..aa2189c7 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -286,6 +286,7 @@ lws_http2_parser(struct libwebsocket_context *context, /* service the http request itself */ lwsl_info("servicing initial http request, wsi=%p, stream wsi=%p\n", wsi, wsi->u.http2.stream_wsi); n = lws_http_action(context, swsi); + (void)n; lwsl_info(" action result %d\n", n); break; case LWS_HTTP2_FRAME_TYPE_PING: