Replace exit(-1) by exit(1)
exit() uses only the least significant byte of its argument.
This commit is contained in:
parent
06753c7e2b
commit
f006e373f9
1 changed files with 1 additions and 1 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue