commit | 38c8551cf23b1740c7573e14466993af3f3cb775 | [log] [tgz] |
---|---|---|
author | Glenn L McGrath <bug1@ihug.co.nz> | Mon Sep 18 09:52:03 2000 +0000 |
committer | Glenn L McGrath <bug1@ihug.co.nz> | Mon Sep 18 09:52:03 2000 +0000 |
tree | f20c3b8fae911d28303cd94632686da371dea335 | |
parent | 63dde9d4ce1a03007b183d75a396e22a8e9d34ca [diff] [blame] |
Path count was out by one, fixed it
diff --git a/findutils/which.c b/findutils/which.c index dc162dc..7df2557 100644 --- a/findutils/which.c +++ b/findutils/which.c
@@ -28,7 +28,7 @@ { char *path_list, *path_n; struct stat filestat; - int i, count=0; + int i, count=1; if (argc <= 1 || **(argv + 1) == '-') usage(which_usage);