From 64add9c9ab7815200bc91f3db5a6677b5613fdbb Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Fri, 10 Mar 2023 20:12:25 +0000 Subject: [PATCH] Fix unused variable warning. --- tools/src/http-debug-server.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/src/http-debug-server.c b/tools/src/http-debug-server.c index af77a50..d67f602 100644 --- a/tools/src/http-debug-server.c +++ b/tools/src/http-debug-server.c @@ -47,6 +47,8 @@ HttpHandle(HttpServerContext * cx, void *args) size_t bytes; + (void) args; + printf("%s %s\n", HttpRequestMethodToString(method), HttpRequestPath(cx));