diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-02 11:05:10 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-02 11:05:10 +0000 |
commit | 3a8ab69377cf3da92b416de479226e836b34ba9e (patch) | |
tree | eea53710945a7ef933e868fe847058e601aa442a /sbin | |
parent | 8372d31f0c5f546a3db20ea42865587966b1ff77 (diff) |
pretty while
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/nfsiod/nfsiod.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/nfsiod/nfsiod.c b/sbin/nfsiod/nfsiod.c index 71efc694294..d647d6b363a 100644 --- a/sbin/nfsiod/nfsiod.c +++ b/sbin/nfsiod/nfsiod.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfsiod.c,v 1.2 1996/03/21 00:16:26 niklas Exp $ */ +/* $OpenBSD: nfsiod.c,v 1.3 1996/08/02 11:05:09 deraadt Exp $ */ /* $NetBSD: nfsiod.c,v 1.12 1996/02/20 16:06:55 fvdl Exp $ */ /* @@ -166,7 +166,8 @@ reapchild(signo) int signo; { - while (wait3(NULL, WNOHANG, NULL) > 0); + while (wait3(NULL, WNOHANG, NULL) > 0) + ; } void |