summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorN-R-K <79544946+N-R-K@users.noreply.github.com>2021-12-30 03:21:59 +0100
committerGitHub <noreply@github.com>2021-12-30 03:21:59 +0100
commit1a691d42f6893e7bd6d18d541a9a46d87223c9cc (patch)
tree900245213572bd25506986fd8c24dc7c14c7f2cb
parent1c8ea413f3ef3528e7e6b5357f75bc4332189e0b (diff)
downloadnsxiv-1a691d42f6893e7bd6d18d541a9a46d87223c9cc.tar.zst
fix: broken compilation when using HAVE_LIBFONTS=0 (#194)
compilation currently fails with `make HAVE_LIBFONTS=0` due to `EXIT_SUCCESS` not being defined. I assume Xft.h includes stdlib.h which is why compilation works with HAVE_LIBFONTS=1 this switches to using 0 as cg_quit argument in keybindings. if my interpretation of the C99 standard is correct, then 0 and EXIT_SUCCESS means the same thing. > If the value of status is zero or EXIT_SUCCESS, an > implementation-defined form of the status successful termination is > returned.
-rw-r--r--config.def.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index 3a26b7a..107c6ac 100644
--- a/config.def.h
+++ b/config.def.h
@@ -89,7 +89,7 @@ static const KeySym KEYHANDLER_ABORT = XK_Escape;
/* keyboard mappings for image and thumbnail mode: */
static const keymap_t keys[] = {
/* modifiers key function argument */
- { 0, XK_q, g_quit, EXIT_SUCCESS },
+ { 0, XK_q, g_quit, 0 },
{ 0, XK_Return, g_switch_mode, None },
{ 0, XK_f, g_toggle_fullscreen, None },
{ 0, XK_b, g_toggle_bar, None },