aboutsummaryrefslogtreecommitdiff
path: root/fbset.c
diff options
context:
space:
mode:
Diffstat (limited to 'fbset.c')
-rw-r--r--fbset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fbset.c b/fbset.c
index 8307f262d..47130e355 100644
--- a/fbset.c
+++ b/fbset.c
@@ -434,7 +434,7 @@ extern int fbset_main(int argc, char **argv)
if (g_options & OPT_READMODE) {
if (!readmode(&var, modefile, mode)) {
errorMsg("Unknown video mode `%s'\n", mode);
- exit(1);
+ return EXIT_FAILURE;
}
}
@@ -446,5 +446,5 @@ extern int fbset_main(int argc, char **argv)
/* Don't close the file, as exiting will take care of that */
/* close(fh); */
- return (TRUE);
+ return EXIT_SUCCESS;
}