aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorBert Münnich <ber.t@posteo.de>2015-12-28 17:00:21 +0100
committerBert Münnich <ber.t@posteo.de>2015-12-28 17:00:21 +0100
commit53a72c7b657d9dc3347d9d68e0b9a00773efe732 (patch)
tree0df691ca5c10b2fce81a9d09a4d4304231e44e78 /util.c
parentf75fa78ecaea43204e5e6abdf568139a7b621d6d (diff)
downloadnsxiv-53a72c7b657d9dc3347d9d68e0b9a00773efe732.tar.zst
Fix option -q; commit d3a70a2 completely broke it; fixes issue #223
Diffstat (limited to 'util.c')
-rw-r--r--util.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/util.c b/util.c
index 5271a1d..070101e 100644
--- a/util.c
+++ b/util.c
@@ -62,6 +62,9 @@ void error(int eval, int err, const char* fmt, ...)
{
va_list ap;
+ if (eval == 0 && options->quiet)
+ return;
+
fflush(stdout);
fprintf(stderr, "%s: ", progname);
va_start(ap, fmt);