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/opts.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/opts.c') diff --git a/src/opts.c b/src/opts.c index 3237642..72f5ce0 100644 --- a/src/opts.c +++ b/src/opts.c @@ -45,13 +45,13 @@ void parse_opts(int argc, char * const *argv) { case 'd': opts.outdir = optarg; break; case 'x': add_exclude(optarg); break; default: - fprintf(stderr, "%s: invalid option (try -h or --help)\n", self); + fprintf(stderr, "%s: fatal: invalid option (try -h or --help)\n", self); exit(1); } } if(optind >= argc) { - fprintf(stderr, "%s: missing alf file argument (try -h or --help)\n", self); + fprintf(stderr, "%s: fatal: missing alf file argument (try -h or --help)\n", self); exit(1); } -- cgit v1.2.3