summaryrefslogtreecommitdiff
path: root/usr.bin/xargs
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-09-12 01:47:26 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-09-12 01:47:26 +0000
commitef01ed64bb31c51af1e3423d962e40112e698a23 (patch)
tree31a9c0452ee5442593c892a653cb61c236a24bab /usr.bin/xargs
parentccac261ae2eecf7701f7600f2129ea1eca0ec017 (diff)
s/;;/;/
Diffstat (limited to 'usr.bin/xargs')
-rw-r--r--usr.bin/xargs/xargs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/xargs/xargs.c b/usr.bin/xargs/xargs.c
index 8bc611cb09d..69c710883a2 100644
--- a/usr.bin/xargs/xargs.c
+++ b/usr.bin/xargs/xargs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: xargs.c,v 1.4 1997/01/15 23:43:40 millert Exp $ */
+/* $OpenBSD: xargs.c,v 1.5 1997/09/12 01:47:25 deraadt Exp $ */
/* $NetBSD: xargs.c,v 1.7 1994/11/14 06:51:41 jtc Exp $ */
/*-
@@ -47,7 +47,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)xargs.c 8.1 (Berkeley) 6/6/93";
#endif
-static char rcsid[] = "$OpenBSD: xargs.c,v 1.4 1997/01/15 23:43:40 millert Exp $";
+static char rcsid[] = "$OpenBSD: xargs.c,v 1.5 1997/09/12 01:47:25 deraadt Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -293,7 +293,7 @@ run(argv)
case 0:
execvp(argv[0], argv);
noinvoke = (errno == ENOENT) ? 127 : 126;
- warn("%s", argv[0]);;
+ warn("%s", argv[0]);
_exit(1);
}
pid = waitpid(pid, &status, 0);