From a5b63e992bb1d45982269cd4be4d8990414acc17 Mon Sep 17 00:00:00 2001 From: "Evgeny Grin (Karlson2k)" Date: Fri, 29 Sep 2017 13:29:23 +0300 Subject: Muted compiler warnings in examples. --- src/examples/querystring_example.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/examples/querystring_example.c') diff --git a/src/examples/querystring_example.c b/src/examples/querystring_example.c index 6f95b44e..3d91bcea 100644 --- a/src/examples/querystring_example.c +++ b/src/examples/querystring_example.c @@ -42,6 +42,10 @@ ahc_echo (void *cls, char *me; struct MHD_Response *response; int ret; + (void)url; /* Unused. Silent compiler warning. */ + (void)version; /* Unused. Silent compiler warning. */ + (void)upload_data; /* Unused. Silent compiler warning. */ + (void)upload_data_size; /* Unused. Silent compiler warning. */ if (0 != strcmp (method, "GET")) return MHD_NO; /* unexpected method */ -- cgit v1.2.3