summaryrefslogtreecommitdiffstats
path: root/sail
diff options
context:
space:
mode:
authorjsm <jsm@NetBSD.org>2004-01-27 20:23:36 +0000
committerjsm <jsm@NetBSD.org>2004-01-27 20:23:36 +0000
commitc390f2a9e6bae826618bcbfe8f92f498690b662f (patch)
tree750526d39ee912718721acfb979d6145523f3fcd /sail
parentfab68984a6f4207d48e9315ac074c3bfb17015cb (diff)
downloadbsdgames-darwin-c390f2a9e6bae826618bcbfe8f92f498690b662f.tar.gz
bsdgames-darwin-c390f2a9e6bae826618bcbfe8f92f498690b662f.tar.zst
bsdgames-darwin-c390f2a9e6bae826618bcbfe8f92f498690b662f.zip
Use int for wait status.
Diffstat (limited to 'sail')
-rw-r--r--sail/pl_1.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sail/pl_1.c b/sail/pl_1.c
index 6239dddf..f80f5024 100644
--- a/sail/pl_1.c
+++ b/sail/pl_1.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pl_1.c,v 1.17 2003/08/07 09:37:43 agc Exp $ */
+/* $NetBSD: pl_1.c,v 1.18 2004/01/27 20:23:36 jsm Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)pl_1.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: pl_1.c,v 1.17 2003/08/07 09:37:43 agc Exp $");
+__RCSID("$NetBSD: pl_1.c,v 1.18 2004/01/27 20:23:36 jsm Exp $");
#endif
#endif /* not lint */
@@ -129,12 +129,12 @@ choke(int n __attribute__((__unused__)))
void
child(int n __attribute__((__unused__)))
{
- union wait status;
+ int status;
int pid;
signal(SIGCHLD, SIG_IGN);
do {
- pid = wait3((int *)&status, WNOHANG, (struct rusage *)0);
+ pid = wait3(&status, WNOHANG, (struct rusage *)0);
if (pid < 0 || (pid > 0 && !WIFSTOPPED(status)))
hasdriver = 0;
} while (pid > 0);