[svn-r771] Changed exit(n) in main() to return(n) to pacify the compiler.

Platform tested:
    O2K
This commit is contained in:
Albert Cheng 1998-10-21 00:12:58 -05:00
parent d774cf9daf
commit 5ce4069c24

View File

@ -1077,9 +1077,9 @@ main(void)
if (nerrors) goto error;
puts("All mount tests passed.");
cleanup();
exit(0);
return(0);
error:
puts("***** MOUNT ERRORS *****");
exit(1);
return(1);
}