diff --git a/main.c b/main.c index 1cf7441..19a7238 100644 --- a/main.c +++ b/main.c @@ -144,5 +144,8 @@ int main(int argc, char** argv) free(in_buf); free(out_buf); + printf("\n"); + printf("Written %ld of %ld bytes, only %f%%.\n", total_written, last_pos, ((float)total_written * 100.0) / (float)last_pos); + return 0; }