From 3096bf925551a112eaf2ee9f7502ed4b0682018a Mon Sep 17 00:00:00 2001 From: belliash Date: Tue, 2 Feb 2021 18:20:19 +0100 Subject: [PATCH] Return 0 when printing help or version in the windres tool. --- tools/windres.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/windres.c b/tools/windres.c index 5171ad3..7a07360 100644 --- a/tools/windres.c +++ b/tools/windres.c @@ -87,7 +87,7 @@ static void print_version(void) { printf("XTchain windres (GNU windres compatible) %s\n", WINDRES_VERSION); - exit(-1); + exit(0); } static @@ -126,7 +126,7 @@ void print_help(void) " pei-x86-64\n" " pe-i386\n" " pei-i386\n"); - exit(1); + exit(0); } static