From 3f1a7265b1d00969e184545da8649299f549c268 Mon Sep 17 00:00:00 2001 From: Sebastien L Date: Fri, 13 Oct 2023 12:19:21 -0400 Subject: [PATCH] Use DEFINES for parsing - release fixes https://github.com/sle118/squeezelite-esp32/issues/332 --- components/platform_config/platform_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/platform_config/platform_config.h b/components/platform_config/platform_config.h index 965dda09..9e3aa803 100644 --- a/components/platform_config/platform_config.h +++ b/components/platform_config/platform_config.h @@ -8,7 +8,7 @@ #ifdef __cplusplus extern "C" { #endif -#define PARSE_WITH_FUNC 1 + #ifdef PARSE_WITH_FUNC #define PARSE_PARAM(S,P,C,V) config_parse_param_int(S,P,C,(int*)&V) #define PARSE_PARAM_STR(S,P,C,V,I) config_parse_param_str(S,P,C,V,I)