aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/test_options.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/test_options.c')
-rw-r--r--src/microhttpd/test_options.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/test_options.c b/src/microhttpd/test_options.c
index 575b6a2b..b79ddb01 100644
--- a/src/microhttpd/test_options.c
+++ b/src/microhttpd/test_options.c
@@ -42,7 +42,7 @@ ahc_echo (void *cls,
42 const char *method, 42 const char *method,
43 const char *version, 43 const char *version,
44 const char *upload_data, size_t *upload_data_size, 44 const char *upload_data, size_t *upload_data_size,
45 void **unused) 45 void **req_cls)
46{ 46{
47 (void) cls; 47 (void) cls;
48 (void) connection; 48 (void) connection;
@@ -51,7 +51,7 @@ ahc_echo (void *cls,
51 (void) version; 51 (void) version;
52 (void) upload_data; 52 (void) upload_data;
53 (void) upload_data_size; 53 (void) upload_data_size;
54 (void) unused; 54 (void) req_cls;
55 55
56 return 0; 56 return 0;
57} 57}