From b1e196443d0aa0823b2215de98811977ae38d399 Mon Sep 17 00:00:00 2001 From: luca0N! <63941044+luca0N@users.noreply.github.com> Date: Sat, 27 Jun 2020 03:09:45 -0300 Subject: [PATCH] Removed verbose message --- main.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/main.c b/main.c index 5088493..daffa1f 100644 --- a/main.c +++ b/main.c @@ -221,9 +221,8 @@ void getAdditionalDirs(bool safeMode){ if (!safeMode) cleanDir(currentPath, &objectCount, &totalDeletedBytes); } - printf(FMT_STR_OBJECT_COUNT, objectCount); - // Determine whether we should output the size as bytes, KiB, MiB or GiB. + // Determine whether we should output the size as bytes, KiB, MiB or GiB. if (totalDeletedBytes < 1024){ printf(FMT_STR_TOTAL_DELETED_BYTES, totalDeletedBytes); } else if (totalDeletedBytes < (unsigned long) pow(1024, 2)){