fix: don't use reserved identifiers

identifiers beginning with an underscore is reserved by the C standard.
This commit is contained in:
NRK
2022-06-15 13:42:34 +06:00
committed by Gitea
parent f23d57d4ad
commit b28449e10c
6 changed files with 9 additions and 9 deletions

View File

@ -18,7 +18,7 @@
*/
#include "nsxiv.h"
#define _IMAGE_CONFIG
#define INCLUDE_IMAGE_CONFIG
#include "config.h"
#include <errno.h>