diff --git a/syslogd.c b/syslogd.c index 185fc03..b7527e7 100644 --- a/syslogd.c +++ b/syslogd.c @@ -2171,7 +2171,7 @@ void reapchild() (void) signal(SIGCHLD, reapchild); /* reset signal handler -ASP */ wait ((int *)0); #else - union wait status; + int status; while (wait3(&status, WNOHANG, (struct rusage *) NULL) > 0) ;