From: Ralph Boehme Date: Mon, 21 Jul 2014 15:28:10 +0000 (+0200) Subject: fce: afpd: missing includes and fix SIGCLD handler argument list X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=netatalk.git;a=commitdiff_plain;h=ff0beccf80895a25830c952ce93f314a2d8fe0a6 fce: afpd: missing includes and fix SIGCLD handler argument list Signed-off-by: Ralph Boehme --- diff --git a/etc/afpd/afp_dsi.c b/etc/afpd/afp_dsi.c index eb7f796e..124db47a 100644 --- a/etc/afpd/afp_dsi.c +++ b/etc/afpd/afp_dsi.c @@ -28,6 +28,8 @@ #include #include #include +#include +#include #include #include @@ -337,7 +339,7 @@ static void alarm_handler(int sig _U_) } } -static void child_handler(void) +static void child_handler(int sig _U_) { wait(NULL); }