Removed verbose message

This commit is contained in:
luca0N! 2020-06-27 03:09:45 -03:00
parent 76e4249ea8
commit b1e196443d
No known key found for this signature in database
GPG Key ID: 9F1B99B522287CAB
1 changed files with 1 additions and 2 deletions

3
main.c
View File

@ -221,9 +221,8 @@ void getAdditionalDirs(bool safeMode){
if (!safeMode) if (!safeMode)
cleanDir(currentPath, &objectCount, &totalDeletedBytes); 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){ if (totalDeletedBytes < 1024){
printf(FMT_STR_TOTAL_DELETED_BYTES, totalDeletedBytes); printf(FMT_STR_TOTAL_DELETED_BYTES, totalDeletedBytes);
} else if (totalDeletedBytes < (unsigned long) pow(1024, 2)){ } else if (totalDeletedBytes < (unsigned long) pow(1024, 2)){