From 829fd938876f1bbad56bfa792ab8a0a0a18b8fc6 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 26 Nov 2025 06:23:59 -0500 Subject: Document 16MB limit in alf man page. --- src/alf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/alf.c') diff --git a/src/alf.c b/src/alf.c index d03ece7..27b6d86 100644 --- a/src/alf.c +++ b/src/alf.c @@ -211,7 +211,7 @@ int match_token(int pos) { } if(bestmatch == -1) { - fprintf(stderr, "bestmatch is -1, this should never happen\n"); + fprintf(stderr, "BUG: bestmatch is -1, this should never happen!\n"); exit(1); } @@ -270,7 +270,7 @@ void crunch_file(const char *filename) { /* read in entire input, couldn't do it this way on the Atari */ input_len = fread(input_buf, 1, MAX_INPUT_SIZE - 1, in_file); if(!feof(in_file)) { - fprintf(stderr, "%s: warning: this file is too large; only compressing the first 16MB.\n", self); + fprintf(stderr, "%s: this file is too large; only compressing the first 16MB.\n", self); } output_len = 0; fstat(fileno(in_file), &in_file_stat); /* for timestamp */ -- cgit v1.2.3