From 1573756d1cc423191db24cbb3c5250468fa2e2c2 Mon Sep 17 00:00:00 2001 From: Brett Gordon Date: Mon, 15 Jan 2018 22:54:12 -0500 Subject: [PATCH] fortune: bug: main doesn't return success. --- Applications/games/fortune-gen.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Applications/games/fortune-gen.c b/Applications/games/fortune-gen.c index e52f6d4a..51c0bb1d 100644 --- a/Applications/games/fortune-gen.c +++ b/Applications/games/fortune-gen.c @@ -66,4 +66,5 @@ int main(int argc, char *argv[]) perror("fwrite3"); exit(1); } + return 0; } -- 2.34.1