aboutsummaryrefslogtreecommitdiff
path: root/src/examples/chunked_example.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/examples/chunked_example.c')
-rw-r--r--src/examples/chunked_example.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/examples/chunked_example.c b/src/examples/chunked_example.c
index 96ae148a..a661216c 100644
--- a/src/examples/chunked_example.c
+++ b/src/examples/chunked_example.c
@@ -99,6 +99,11 @@ ahc_echo (void *cls,
99 struct ResponseContentCallbackParam * callback_param; 99 struct ResponseContentCallbackParam * callback_param;
100 struct MHD_Response *response; 100 struct MHD_Response *response;
101 int ret; 101 int ret;
102 (void)cls; /* Unused. Silent compiler warning. */
103 (void)url; /* Unused. Silent compiler warning. */
104 (void)version; /* Unused. Silent compiler warning. */
105 (void)upload_data; /* Unused. Silent compiler warning. */
106 (void)upload_data_size; /* Unused. Silent compiler warning. */
102 107
103 if (0 != strcmp (method, "GET")) 108 if (0 != strcmp (method, "GET"))
104 return MHD_NO; /* unexpected method */ 109 return MHD_NO; /* unexpected method */