From e114123df2a05650f0f7e34044c1e8f829c50a44 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Mon, 3 Mar 2025 16:43:19 +0100 Subject: misc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- lss16toppm.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'lss16toppm.c') diff --git a/lss16toppm.c b/lss16toppm.c index 6dcff62..48c9b93 100644 --- a/lss16toppm.c +++ b/lss16toppm.c @@ -6,6 +6,10 @@ #include #include +#if defined(__clang__) +# pragma clang diagnostic ignored "-Wunsafe-buffer-usage" +#endif + static const char *argv0 = "lss16toppm"; @@ -41,7 +45,7 @@ main(int argc, char *argv[]) enum liblss16_decode_error error; int head_printed = 0; int print_colour_map = 0; - int have_stdout, len; + int have_stdout = 0, len; size_t i; /* cmdline syntax is inherited from the SYSLINUX implementation, @@ -52,11 +56,12 @@ main(int argc, char *argv[]) argc--; } - for (; argc; argc--, argv++) { + for (; argc--; argv++) { if (!strcmp(*argv, "-map")) { print_colour_map = 1; } else { fprintf(stderr, "%s: Unknown option: %s\n", argv0, *argv); + return 2; } } -- cgit v1.2.3-70-g09d2