diff options
author | ngie <ngie@FreeBSD.org> | 2017-05-22 06:05:14 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-05-22 06:05:14 +0000 |
commit | d7f8772930b315d853ffe779d7e5c538af7a0f3d (patch) | |
tree | b54cda9efff5c11ef177e429023ade779cda43c7 /usr.bin | |
parent | 0799e481e008ebfb8fd6ae1715e8f1e044468be6 (diff) | |
download | FreeBSD-src-d7f8772930b315d853ffe779d7e5c538af7a0f3d.zip FreeBSD-src-d7f8772930b315d853ffe779d7e5c538af7a0f3d.tar.gz |
MFC r317160:
Clean up trailing whitespace
No functional changes
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/which/which.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/which/which.c b/usr.bin/which/which.c index 2c11b80..10161fe 100644 --- a/usr.bin/which/which.c +++ b/usr.bin/which/which.c @@ -39,7 +39,7 @@ __FBSDID("$FreeBSD$"); static void usage(void); static int print_matches(char *, char *); - + static int silent; static int allpaths; @@ -81,7 +81,7 @@ main(int argc, char **argv) while (argc > 0) { memcpy(path, p, pathlen); - + if (strlen(*argv) >= FILENAME_MAX || print_matches(path, *argv) == -1) status = EXIT_FAILURE; |