aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/du.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/coreutils/du.c b/coreutils/du.c
index e5fe5ffe2..e95f3a2f1 100644
--- a/coreutils/du.c
+++ b/coreutils/du.c
@@ -235,10 +235,8 @@ int du_main(int argc, char **argv)
total += du(*argv);
slink_depth = slink_depth_save;
} while (*++argv);
-#if ENABLE_FEATURE_CLEAN_UP
- reset_ino_dev_hashtable();
-#endif
-
+ if (ENABLE_FEATURE_CLEAN_UP)
+ reset_ino_dev_hashtable();
if (print_final_total) {
print(total, "total");
}