From 25cd8f885f50bd1fad641a4fadb2956e2f585b87 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Wed, 18 Sep 2024 17:11:54 +0200 Subject: [PATCH] Indent --- src/ls.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ls.c b/src/ls.c index ba7d0db..9063646 100644 --- a/src/ls.c +++ b/src/ls.c @@ -1051,8 +1051,8 @@ void domlsd(const char *base) if (*base != 0 && chdir(base) != 0) { if (*base++ == '-') { - while (*base!=0 && !isspace((unsigned char) *base++)); - while (*base!=0 && isspace((unsigned char) *base++)); + while (*base != 0 && !isspace((unsigned char) *base++)); + while (*base != 0 && isspace((unsigned char) *base++)); if (*base != 0 && chdir(base) != 0) { addreply_noformat(550, MSG_STAT_FAILURE2); return;