aboutsummaryrefslogtreecommitdiffstats
path: root/main.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 /main.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 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 1b50dd6..64710f2 100644
--- a/main.c
+++ b/main.c
@@ -18,7 +18,7 @@
*/
#include "nsxiv.h"
-#define _MAPPINGS_CONFIG
+#define INCLUDE_MAPPINGS_CONFIG
#include "commands.h"
#include "config.h"