Removed verbose message
This commit is contained in:
parent
76e4249ea8
commit
b1e196443d
3
main.c
3
main.c
|
@ -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)){
|
||||||
|
|
Reference in New Issue