From f006e373f91db505d244c1435511595098c71b66 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Sat, 29 Oct 2011 20:25:01 +0200 Subject: [PATCH] Replace exit(-1) by exit(1) exit() uses only the least significant byte of its argument. --- src/util/fairland.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/fairland.c b/src/util/fairland.c index d2e2cc896..fcaf94f75 100644 --- a/src/util/fairland.c +++ b/src/util/fairland.c @@ -267,7 +267,7 @@ main(int argc, char *argv[]) write_sects(); qprint("writing to sectors file...\n"); if (!ef_close(EF_SECTOR)) - exit(-1); + exit(1); output(); qprint("\n\nA script for adding all the countries can be found in \"%s\".\n", -- 2.43.0