From eb00a535a1bcfb4bb4570ff018fd3aa3e6ddade1 Mon Sep 17 00:00:00 2001 From: tcpluess Date: Fri, 28 Apr 2023 23:05:56 +0200 Subject: [PATCH] Paranthesize expression-like macro (#668) --- include/newlib-freertos.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/newlib-freertos.h b/include/newlib-freertos.h index 497ca529990..a65e62e8ef7 100644 --- a/include/newlib-freertos.h +++ b/include/newlib-freertos.h @@ -52,7 +52,7 @@ #endif #ifndef configSET_TLS_BLOCK - #define configSET_TLS_BLOCK( xTLSBlock ) _impure_ptr = &( xTLSBlock ) + #define configSET_TLS_BLOCK( xTLSBlock ) ( _impure_ptr = &( xTLSBlock ) ) #endif #ifndef configDEINIT_TLS_BLOCK