diff options
| author | B. Watson <urchlay@slackware.uk> | 2025-12-01 08:07:42 -0500 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2025-12-01 08:07:42 -0500 |
| commit | dfe0a77f5d7a3847ab5475065516a6dc7755f61f (patch) | |
| tree | 147bf60ffa6a14e4391a5a693bf44d02f71e6402 | |
| parent | 9072b5237c6db7a6872c8b02ff4df749a2d6b9c5 (diff) | |
| download | alftools-dfe0a77f5d7a3847ab5475065516a6dc7755f61f.tar.gz | |
Show original filename with alf -v.
| -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'); |
