aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-04-16 14:20:49 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-04-17 15:24:37 +0300
commit2cef909cdd985117c9d3aa041f2e0a9323355199 (patch)
tree52f6e574439862d8c15df00e91896c939a4623b4
parent3ebb98295631a662bdb66b9148f4f43000dc3671 (diff)
downloadlibmicrohttpd-2cef909cdd985117c9d3aa041f2e0a9323355199.tar.gz
libmicrohttpd-2cef909cdd985117c9d3aa041f2e0a9323355199.zip
test_postprocessor_amp: fixed code style
-rw-r--r--src/microhttpd/test_postprocessor_amp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/microhttpd/test_postprocessor_amp.c b/src/microhttpd/test_postprocessor_amp.c
index 610a3da3..0569cb1f 100644
--- a/src/microhttpd/test_postprocessor_amp.c
+++ b/src/microhttpd/test_postprocessor_amp.c
@@ -8,9 +8,9 @@
8uint64_t num_errors; 8uint64_t num_errors;
9 9
10enum MHD_Result 10enum MHD_Result
11check_post (void *cls, enum MHD_ValueKind kind, const char*key, 11check_post (void *cls, enum MHD_ValueKind kind, const char *key,
12 const char*filename, const char*content_type, 12 const char *filename, const char *content_type,
13 const char*content_encoding, const char*data, 13 const char *content_encoding, const char *data,
14 uint64_t off, size_t size) 14 uint64_t off, size_t size)
15{ 15{
16 (void) cls; (void) kind; (void) filename; (void) content_type; /* Unused. Silent compiler warning. */ 16 (void) cls; (void) kind; (void) filename; (void) content_type; /* Unused. Silent compiler warning. */