From: Arun Prakash Jana Date: Tue, 14 Apr 2020 15:29:37 +0000 (+0530) Subject: Check for file first (more in number) X-Git-Tag: v3.2~134 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=e0cdbcb521dca6b68ed36145de01029a4a784b07;p=nnn.git Check for file first (more in number) --- diff --git a/src/nnn.c b/src/nnn.c index 022403f5..8220c5de 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -4271,8 +4271,9 @@ static void launch_app(const char *path, char *newpath) static int sum_bsize(const char *UNUSED(fpath), const struct stat *sb, int typeflag, struct FTW *UNUSED(ftwbuf)) { - if (sb->st_blocks && (typeflag == FTW_D - || (typeflag == FTW_F && (sb->st_nlink <= 1 || test_set_bit((uint)sb->st_ino))))) + if (sb->st_blocks + && ((typeflag == FTW_F && (sb->st_nlink <= 1 || test_set_bit((uint)sb->st_ino))) + || typeflag == FTW_D)) ent_blocks += sb->st_blocks; ++num_files; @@ -4281,8 +4282,9 @@ static int sum_bsize(const char *UNUSED(fpath), const struct stat *sb, int typef static int sum_asize(const char *UNUSED(fpath), const struct stat *sb, int typeflag, struct FTW *UNUSED(ftwbuf)) { - if (sb->st_size && (typeflag == FTW_D - || (typeflag == FTW_F && (sb->st_nlink <= 1 || test_set_bit((uint)sb->st_ino))))) + if (sb->st_size + && ((typeflag == FTW_F && (sb->st_nlink <= 1 || test_set_bit((uint)sb->st_ino))) + || typeflag == FTW_D)) ent_blocks += sb->st_size; ++num_files;