remove some compiler warning

This commit is contained in:
Sergio R. Caprile 2023-12-23 19:02:05 -03:00 committed by GitHub
parent 06f8238107
commit 176db1aedb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ static void fn(struct mg_connection *c, int ev, void *ev_data, void *fn_data) {
}
} else {
struct mg_http_serve_opts opts = {.root_dir = s_root_dir};
mg_http_serve_dir(c, ev_data, &opts);
mg_http_serve_dir(c, hm, &opts);
}
}
(void) fn_data;