summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBert Münnich <ber.t@gmx.com>2011-09-26 21:28:27 +0200
committerBert Münnich <ber.t@gmx.com>2011-09-26 21:28:27 +0200
commitd08408e94250425e677e1ab33d917e05e229faa2 (patch)
tree2d8ca1ac2ea2d1f16515f98b375862b3ad6d33e4
parent9e52ae768e628ffbefabd6f7445d47d10c0aced9 (diff)
downloadnsxiv-d08408e94250425e677e1ab33d917e05e229faa2.tar.zst
Make use of EXIT_* macros (2)
-rw-r--r--Makefile2
-rw-r--r--main.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 5616326..3813ae8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = git-20110923
+VERSION = git-20110926
CC = gcc
CFLAGS = -Wall -pedantic -O2
diff --git a/main.c b/main.c
index 7eec9eb..ed11a9b 100644
--- a/main.c
+++ b/main.c
@@ -109,15 +109,15 @@ void check_add_file(char *filename) {
fileidx++;
}
-void remove_file(int n, bool silent) {
+void remove_file(int n, bool manual) {
if (n < 0 || n >= filecnt)
return;
if (filecnt == 1) {
- if (!silent)
+ if (!manual)
fprintf(stderr, "sxiv: no more files to display, aborting\n");
cleanup();
- exit(!silent);
+ exit(manual ? EXIT_SUCCESS : EXIT_FAILURE);
}
if (files[n].path != files[n].name)