From 32eccc9d0874b77ecef3e868570b12a0e455d350 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 19 Sep 2003 06:51:59 +0000 Subject: [PATCH] (process_file): Remove useless disjunct. --- src/du.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/du.c b/src/du.c index ddcb13c..15b4461 100644 --- a/src/du.c +++ b/src/du.c @@ -461,9 +461,7 @@ process_file (const char *file, const struct stat *sb, int file_type, if (!print) return 0; - /* FIXME: This looks suspiciously like it could be simplified. */ - if ((IS_FTW_DIR_TYPE (file_type) && - (info->level <= max_depth || info->level == 0)) + if ((IS_FTW_DIR_TYPE (file_type) && info->level <= max_depth) || ((opt_all && info->level <= max_depth) || info->level == 0)) { print_only_size (size_to_print); -- 2.7.4