main.c: fixed indents

This commit is contained in:
vvaltman 2015-06-01 12:33:35 +03:00
parent ba1fb083fb
commit 44a20ae419

6
main.c
View File

@ -860,10 +860,12 @@ void do_halt (int error) {
close (sfd);
}
if(exit_code)
if (exit_code) {
retval = exit_code;
else
} else {
retval = error ? EXIT_FAILURE : EXIT_SUCCESS;
}
exit (retval);
}