From cf41af0825e1457ed08da9d9c4594dbdffe04411 Mon Sep 17 00:00:00 2001 From: Pieter Kockx Date: Thu, 12 Oct 2017 00:17:26 +0200 Subject: [PATCH] which: fix whitespace --- which.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/which.c b/which.c index 1975710..ce312ae 100644 --- a/which.c +++ b/which.c @@ -29,8 +29,8 @@ which(const char *path, const char *name) ptr[i] = '\0'; if ((dirfd = open(p, O_RDONLY, 0)) >= 0) { if (!fstatat(dirfd, name, &st, 0) && - S_ISREG(st.st_mode) && - !faccessat(dirfd, name, X_OK, 0)) { + S_ISREG(st.st_mode) && + !faccessat(dirfd, name, X_OK, 0)) { found = 1; fputs(p, stdout); if (i && ptr[i - 1] != '/') -- 2.13.5