Commit 36ed9b07 authored by Pierre Ynard's avatar Pierre Ynard Committed by Rémi Duraffort

Fix inexistant argument

Signed-off-by: default avatarRémi Duraffort <ivoire@videolan.org>
parent 2724ab87
......@@ -81,7 +81,7 @@ httpd_handler_t *httpd_HandlerNew (httpd_host_t *host, const char *url,
httpd_handler_callback_t cb,
httpd_handler_sys_t *data)
{
(void) host; (void) url; (void) content_type;
(void) host; (void) url;
(void) login; (void) password; (void) acl;
(void) cb; (void) data;
assert (0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment