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)){