From b28449e10c92c304434645872199d8f8cb2448b4 Mon Sep 17 00:00:00 2001 From: NRK Date: Wed, 15 Jun 2022 13:42:34 +0600 Subject: fix: don't use reserved identifiers identifiers beginning with an underscore is reserved by the C standard. --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main.c') 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" -- cgit v1.2.3-54-g00ecf