From 23abb4764a4be094608a14a6637f08e8f3067a76 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Fri, 21 Nov 2025 15:49:56 -0500 Subject: Add fatal: prefix to fatal error messages. --- src/listalf.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/listalf.c') diff --git a/src/listalf.c b/src/listalf.c index 2c236c9..8082d11 100644 --- a/src/listalf.c +++ b/src/listalf.c @@ -109,8 +109,7 @@ void list_alf(void) { } if(fseek(in_file, comp_size, SEEK_CUR) != 0) { - fputs(self, stderr); - perror(": fseek"); + fprintf(stderr, "%s: fatal: seek failed on input!\n", self); exit(1); } } -- cgit v1.2.3