From: Vladimir 'phcoder' Serbinenko Date: Tue, 24 Nov 2009 03:21:07 +0000 (+0100) Subject: Use return instead of exit () in gentrigtables.c X-Git-Tag: 1.98~93^2~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f41eb558284ffca53d8e80a98a6924b286f09ab;p=thirdparty%2Fgrub.git Use return instead of exit () in gentrigtables.c --- diff --git a/gentrigtables.c b/gentrigtables.c index 3ef6d08f7..772cd6224 100644 --- a/gentrigtables.c +++ b/gentrigtables.c @@ -44,5 +44,5 @@ main () TAB(sin); TAB(cos); - exit (0); + return 0; }