summaryrefslogtreecommitdiffstats
path: root/commands.c
diff options
context:
space:
mode:
authorrck <dev.rck@gmail.com>2011-09-26 15:40:07 +0200
committerrck <dev.rck@gmail.com>2011-09-26 15:40:07 +0200
commit3a81af41ac3ebdcfa13f70cca0408b2d7acfff3f (patch)
treee3222555c9d7af07c78c2d79b9e1009a525e9f92 /commands.c
parent515e41045198074cc1b015c6296f536edbfedff5 (diff)
downloadnsxiv-3a81af41ac3ebdcfa13f70cca0408b2d7acfff3f.tar.zst
make use of EXIT_ macros
Diffstat (limited to 'commands.c')
-rw-r--r--commands.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands.c b/commands.c
index 7eef1fc..6fb25fc 100644
--- a/commands.c
+++ b/commands.c
@@ -48,7 +48,7 @@ extern int filecnt, fileidx;
bool it_quit(arg_t a) {
cleanup();
- exit(0);
+ exit(EXIT_SUCCESS);
}
bool it_switch_mode(arg_t a) {
@@ -388,7 +388,7 @@ bool it_open_with(arg_t a) {
execlp(prog, prog,
files[mode == MODE_IMAGE ? fileidx : tns.sel].path, NULL);
warn("could not exec: %s", prog);
- exit(1);
+ exit(EXIT_FAILURE);
} else if (pid < 0) {
warn("could not fork. program was: %s", prog);
}
@@ -415,7 +415,7 @@ bool it_shell_cmd(arg_t a) {
if ((pid = fork()) == 0) {
execl("/bin/sh", "/bin/sh", "-c", cmdline, NULL);
warn("could not exec: /bin/sh. command line was: %s", cmdline);
- exit(1);
+ exit(EXIT_FAILURE);
} else if (pid < 0) {
warn("could not fork. command line was: %s", cmdline);
return false;