Revert part of the previous revision. Changing exit() to return() in main()
is wrong, even though our C compiler doesn't understand that exit() eats control of the program, and as such can sometimes complain that main() reaches the bottom of its body without an explicit return(). Aside from that, the functional usefulness of changing it is effectively nil, so back it out. Submitted by: mike
This commit is contained in:
parent
5301e2c8db
commit
8411206053
@ -121,7 +121,7 @@ main(argc, argv)
|
||||
}
|
||||
if (rval < 0)
|
||||
err(1, "read");
|
||||
return (exitval);
|
||||
exit(exitval);
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user