Return instead of exit() at end of main()

This commit is contained in:
Mukund Sivaraman 2009-09-15 04:06:26 +05:30
parent ce55167487
commit d243515fa7

View File

@ -479,5 +479,5 @@ main (int argc, char **argv)
else
close_log_file ();
exit (EX_OK);
return EXIT_SUCCESS;
}