summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-05-04 09:28:36 +0200
committerdefault <nobody@localhost>2023-05-04 09:28:36 +0200
commit185aac23876f9ae5d9b613f8b9abd517c3ab3b4d (patch)
tree7d7fcf3e99f4acfa05d251a0bec86f899d4a1005 /html.c
parent753eadfd1775545c5bfb4110ad2ba7cb61df9588 (diff)
Added -Wextra to C flags.
Diffstat (limited to 'html.c')
-rw-r--r--html.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/html.c b/html.c
index 3ba7930..3ebe70d 100644
--- a/html.c
+++ b/html.c
@@ -1551,6 +1551,9 @@ int html_post_handler(const xs_dict *req, const char *q_path,
char *payload, int p_size,
char **body, int *b_size, char **ctype)
{
+ (void)p_size;
+ (void)ctype;
+
int status = 0;
snac snac;
char *uid, *p_path;