diff options
| -rw-r--r-- | src/alf.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -187,7 +187,11 @@ void crunch_file(const char *filename) { memset(output_buf, 0, sizeof(output_buf)); create_header(); - printf("Crunching %s", hdr_filename); + if(opt_verbose) { + printf("Crunching %s as %s", filename, hdr_filename); + } else { + printf("Crunching %s", hdr_filename); + } fflush(stdout); if(!opt_verbose) putchar('\n'); |
