summaryrefslogtreecommitdiff
path: root/usr.bin/tip
diff options
context:
space:
mode:
authorjoerg <joerg@NetBSD.org>2012-02-23 23:39:19 +0000
committerjoerg <joerg@NetBSD.org>2012-02-23 23:39:19 +0000
commita66c970ca815034a92ecc0ff34b69580e97d4f90 (patch)
tree479b01a20208ae6903efe066353e81ecae298a31 /usr.bin/tip
parent432e58c15c2ded643ac33e6be96a904325a29d59 (diff)
while (...);
; is really pointless, so remove the first semicolon.
Diffstat (limited to 'usr.bin/tip')
-rw-r--r--usr.bin/tip/cmds.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tip/cmds.c b/usr.bin/tip/cmds.c
index dbabe3eee0f..0b2d4faa79d 100644
--- a/usr.bin/tip/cmds.c
+++ b/usr.bin/tip/cmds.c
@@ -1,4 +1,4 @@
-/* $NetBSD: cmds.c,v 1.33 2011/09/06 18:33:01 joerg Exp $ */
+/* $NetBSD: cmds.c,v 1.34 2012/02/23 23:39:19 joerg Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)cmds.c 8.1 (Berkeley) 6/6/93";
#endif
-__RCSID("$NetBSD: cmds.c,v 1.33 2011/09/06 18:33:01 joerg Exp $");
+__RCSID("$NetBSD: cmds.c,v 1.34 2012/02/23 23:39:19 joerg Exp $");
#endif /* not lint */
#include "tip.h"
@@ -887,7 +887,7 @@ expand(char aname[])
(void)close(pivec[1]);
l = read(pivec[0], xname, BUFSIZ);
(void)close(pivec[0]);
- while (wait(&s) != mypid);
+ while (wait(&s) != mypid)
;
s &= 0377;
if (s != 0 && s != SIGPIPE) {