From 03def55569181393ca00cb08d19f6520f0c5ea93 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Tue, 5 Apr 2016 23:19:46 +0200 Subject: [PATCH 1/1] filter.c: Use EXIT_SUCCESS. Trivial change, since POSIX requires EXIT_SUCCESS to be zero. --- filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filter.c b/filter.c index 1ba12689..9378e469 100644 --- a/filter.c +++ b/filter.c @@ -58,7 +58,7 @@ __noreturn static void print_help_and_die(void) ggo_print_help(&h, d? GPH_STANDARD_FLAGS_DETAILED : GPH_STANDARD_FLAGS); print_filter_helps(d? GPH_MODULE_FLAGS_DETAILED : GPH_MODULE_FLAGS); - exit(0); + exit(EXIT_SUCCESS); } static int parse_config(void) -- 2.39.2