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);