From 9b433e2d8c8a953007f15e80a18079f0cf547a5c Mon Sep 17 00:00:00 2001 From: Vincent Andrae Date: Tue, 17 Dec 2024 17:55:29 +0100 Subject: [PATCH] Fix macro syntax error in config.h --- include/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/config.h b/include/config.h index cedd3d85..47a11afc 100644 --- a/include/config.h +++ b/include/config.h @@ -56,12 +56,12 @@ #include #if TARGET_OS_IOS #undef DEFAULT_PERMISSION - #define 0666 + #define DEFAULT_PERMISSION 0666 #endif #endif #ifdef __ANDROID__ #undef DEFAULT_PERMISSION - #define 0666 + #define DEFAULT_PERMISSION 0666 #endif /* SkipDet's global configuration */