From: ceriel Date: Mon, 9 Mar 1987 14:22:45 +0000 (+0000) Subject: replaced return by exit X-Git-Tag: release-5-5~4474 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=c428b33acc5d58c05c848103cddc51e357b7e8e4;p=ack.git replaced return by exit --- diff --git a/util/ncgg/main.c b/util/ncgg/main.c index f0b992e4e..c18189834 100644 --- a/util/ncgg/main.c +++ b/util/ncgg/main.c @@ -52,5 +52,5 @@ main(argc,argv) char **argv; { } else { errorexit(); } - return(nerrors==0 ? 0 : -1); + exit(nerrors==0 ? 0 : -1); }