diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2010-03-05 22:20:47 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-03-05 22:20:47 +0100 |
commit | 80fadd29b0f30114d0e2a2870889b482ba6920a2 (patch) | |
tree | 880816643bb8e376288f72ed11db4692efd2f381 | |
parent | 7af830a55a6cb82ff4f7e1102f28e1def1b2e193 (diff) | |
download | fetchmail-80fadd29b0f30114d0e2a2870889b482ba6920a2.tar.gz fetchmail-80fadd29b0f30114d0e2a2870889b482ba6920a2.tar.bz2 fetchmail-80fadd29b0f30114d0e2a2870889b482ba6920a2.zip |
Remove unused-variable warning on NetBSD 5.
-rw-r--r-- | daemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,13 +57,13 @@ static RETSIGTYPE sigchld_handler (int sig) /* process SIGCHLD to obtain the exit code of the terminating process */ { - pid_t pid; #if defined(HAVE_WAITPID) /* the POSIX way */ int status; while (waitpid(-1, &status, WNOHANG) > 0) continue; /* swallow 'em up. */ #elif defined(HAVE_WAIT3) /* the BSD way */ + pid_t pid; #if defined(HAVE_UNION_WAIT) && !defined(__FreeBSD__) union wait status; #else |