diff options
| author | B. Watson <urchlay@slackware.uk> | 2025-12-24 05:55:01 -0500 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2025-12-24 05:55:01 -0500 |
| commit | 8017162545171522e1c5e0d8f77634785b2e875f (patch) | |
| tree | 22cadfff3ad96fcfd96a68b074f425d89420f72b /src | |
| parent | d2694e5095ddbe3cd84034a4e5325f5e0fac966f (diff) | |
| download | alftools-8017162545171522e1c5e0d8f77634785b2e875f.tar.gz | |
alf, unalf: add "Processing complete" messages.
Diffstat (limited to 'src')
| -rw-r--r-- | src/alf.c | 3 | ||||
| -rw-r--r-- | src/extract.c | 3 |
2 files changed, 6 insertions, 0 deletions
@@ -386,5 +386,8 @@ int main(int argc, char **argv) { } } + if(!opt_quiet) + puts("Processing complete."); + exit(0); } diff --git a/src/extract.c b/src/extract.c index 02bd81c..c3fee01 100644 --- a/src/extract.c +++ b/src/extract.c @@ -212,6 +212,9 @@ void extract_alf(void) { if(!opts.quiet && !files_extracted) { printf("No files %s!\n", opts.testonly ? "tested" : "extracted"); } + + if(!opts.quiet) + puts("Processing complete"); } void chksum_err(void) { |
