From 4d51150ca0aae979718ac10030df85421b763cd1 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Sun, 28 Jul 2024 16:35:51 +0200 Subject: Make Dillo C99 standard compliant Reviewed-by: dogma --- src/IO/http.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/IO/http.c') diff --git a/src/IO/http.c b/src/IO/http.c index 4c4618c5..c7915fc5 100644 --- a/src/IO/http.c +++ b/src/IO/http.c @@ -234,7 +234,7 @@ void a_Http_connect_done(int fd, bool_t success) dFree(info); } } else { - MSG("**** but no luck with fme %p or sd\n", fme); + MSG("**** but no luck with fme %p or sd\n", (void *) fme); } } @@ -1091,7 +1091,7 @@ static void Http_server_remove(Server_t *srv) dFree(srv); } -static void Http_servers_remove_all() +static void Http_servers_remove_all(void) { Server_t *srv; SocketData_t *sd; @@ -1107,7 +1107,7 @@ static void Http_servers_remove_all() dList_free(servers); } -static void Http_fd_map_remove_all() +static void Http_fd_map_remove_all(void) { FdMapEntry_t *fme; int i, n = dList_length(fd_map); -- cgit v1.2.3