From 1aa8fe8573bfc93f569bf266770e9f39a1c2da14 Mon Sep 17 00:00:00 2001 From: grunfink Date: Tue, 24 Jun 2025 14:08:59 +0200 Subject: "voided" unused arguments in server_post_handler(). --- httpd.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'httpd.c') diff --git a/httpd.c b/httpd.c index af78e09..9216bdc 100644 --- a/httpd.c +++ b/httpd.c @@ -380,6 +380,12 @@ int server_post_handler(const xs_dict *req, const char *q_path, { int status = 0; + (void)payload; + (void)p_size; + (void)body; + (void)b_size; + (void)ctype; + if (strcmp(q_path, "/webmention-hook") == 0) { status = HTTP_STATUS_BAD_REQUEST; -- cgit v1.2.3