Show new size when using -n

Fix for debug mode
This commit is contained in:
Christian Schneider 2016-01-14 12:07:44 +01:00
parent bad3559cd7
commit 0eab02a3fa

View file

@ -2060,7 +2060,13 @@ void denit_convert() {
printf(" instead of ");
print64(fin_length);
printf("\n");
}
} else {
printf("New size: ");
print64(fout_length);
printf(" instead of ");
print64(fin_length);
printf("\n");
}
printf("\nDone.\n");
printf_time(get_time_ms() - start_time);
#else