aboutsummaryrefslogtreecommitdiffstats
path: root/window.c
diff options
context:
space:
mode:
authorNRK <nrk@disroot.org>2022-06-15 09:42:34 +0200
committerGitea <gitea@fake.local>2022-06-25 08:27:01 +0200
commitb28449e10c92c304434645872199d8f8cb2448b4 (patch)
tree5dd7f6ae840823a5e14f435782acfcad0e012344 /window.c
parentf23d57d4ada2dbab52e26073d462ebee57cf53a9 (diff)
downloadnsxiv-b28449e10c92c304434645872199d8f8cb2448b4.tar.zst
fix: don't use reserved identifiers
identifiers beginning with an underscore is reserved by the C standard.
Diffstat (limited to 'window.c')
-rw-r--r--window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/window.c b/window.c
index e13dd83..3cfa188 100644
--- a/window.c
+++ b/window.c
@@ -18,7 +18,7 @@
*/
#include "nsxiv.h"
-#define _WINDOW_CONFIG
+#define INCLUDE_WINDOW_CONFIG
#include "config.h"
#include "icon/data.h"