summaryrefslogtreecommitdiff
path: root/usr.bin/which
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2003-06-10 22:20:55 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2003-06-10 22:20:55 +0000
commitb8aaa8bec8414f8e55cf9b61fe0873d242c773b8 (patch)
tree5e43016c4fae834239fd38972fd58355ed6b54b5 /usr.bin/which
parentf18f6607440f6d2da08fac3522d88a65c77a5f3e (diff)
mostly ansi cleanup; pval ok
Diffstat (limited to 'usr.bin/which')
-rw-r--r--usr.bin/which/which.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/which/which.c b/usr.bin/which/which.c
index bd3af218b2e..bd09600fc5e 100644
--- a/usr.bin/which/which.c
+++ b/usr.bin/which/which.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: which.c,v 1.9 2003/06/03 01:52:41 millert Exp $ */
+/* $OpenBSD: which.c,v 1.10 2003/06/10 22:20:54 deraadt Exp $ */
/*
* Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -17,7 +17,7 @@
*/
#ifndef lint
-static const char rcsid[] = "$OpenBSD: which.c,v 1.9 2003/06/03 01:52:41 millert Exp $";
+static const char rcsid[] = "$OpenBSD: which.c,v 1.10 2003/06/10 22:20:54 deraadt Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -51,7 +51,7 @@ void usage(void);
*/
int
-main(int argc, char **argv)
+main(int argc, char *argv[])
{
char *path;
size_t n;