From: Robert Pengelly Date: Sun, 23 Mar 2025 00:34:28 +0000 (+0000) Subject: Return exit failure if there are errors X-Git-Url: https://git.candlhat.org/?a=commitdiff_plain;h=09b05a6e1291dad7032093e52ee4eceade277917;p=xar.git Return exit failure if there are errors --- diff --git a/ar.c b/ar.c index 65b823e..818c5c4 100644 --- a/ar.c +++ b/ar.c @@ -124,6 +124,6 @@ int main (int argc, char **argv) { } fclose (arfp); - return EXIT_SUCCESS; + return (get_error_count () > 0 ? EXIT_FAILURE : EXIT_SUCCESS); } diff --git a/report.c b/report.c index 14ad2f6..af38fd3 100644 --- a/report.c +++ b/report.c @@ -5,6 +5,7 @@ #include #include "report.h" +unsigned int errors = 0; #ifndef __PDOS__ #if defined (_WIN32) @@ -62,6 +63,10 @@ static void set_console_color (int color) { } #endif +unsigned int get_error_count (void) { + return errors; +} + void report_at (const char *filename, unsigned long line_number, int type, const char *fmt, ...) { va_list ap; @@ -121,5 +126,9 @@ void report_at (const char *filename, unsigned long line_number, int type, const va_end (ap); fprintf (stderr, "\n"); + + if (type != REPORT_WARNING) { + ++errors; + } } diff --git a/report.h b/report.h index bdd121e..847304b 100644 --- a/report.h +++ b/report.h @@ -23,6 +23,7 @@ enum { # define COLOR_WARNING 95 #endif +unsigned int get_error_count (void); void report_at (const char *filename, unsigned long line_number, int type, const char *fmt, ...); #endif /* _REPORT_H */