aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2019-05-18 13:28:52 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2019-05-18 13:44:44 +0300
commitf5b873553831a9721b5d59c335b5217ec817ce48 (patch)
treefa65372515244913e5ec5be7845495d52ece238f
parente53b8ab457dc9e3a4e16d287a0bb8f41338b960d (diff)
downloadlibmicrohttpd-f5b873553831a9721b5d59c335b5217ec817ce48.tar.gz
libmicrohttpd-f5b873553831a9721b5d59c335b5217ec817ce48.zip
http_compression example: fix compiler warning
-rw-r--r--src/examples/http_compression.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/examples/http_compression.c b/src/examples/http_compression.c
index a88be54e..1324fa4d 100644
--- a/src/examples/http_compression.c
+++ b/src/examples/http_compression.c
@@ -101,6 +101,7 @@ ahc_echo (void *cls,
101 int comp; 101 int comp;
102 size_t body_len; 102 size_t body_len;
103 char *body_str; 103 char *body_str;
104 (void) cls; /* Unused. Silent compiler warning. */
104 (void) url; /* Unused. Silent compiler warning. */ 105 (void) url; /* Unused. Silent compiler warning. */
105 (void) version; /* Unused. Silent compiler warning. */ 106 (void) version; /* Unused. Silent compiler warning. */
106 (void) upload_data; /* Unused. Silent compiler warning. */ 107 (void) upload_data; /* Unused. Silent compiler warning. */