From 04dfb70db4a8061d241e82542291f304d0727d83 Mon Sep 17 00:00:00 2001 From: tcpluess Date: Mon, 28 Nov 2022 07:48:29 +0100 Subject: [PATCH] parenthesize expression-like macro (#592) * parenthesize expression-like macro * fixed wrong indentation --- include/FreeRTOS.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/FreeRTOS.h b/include/FreeRTOS.h index 86e4dbde128..ab15190af32 100644 --- a/include/FreeRTOS.h +++ b/include/FreeRTOS.h @@ -94,7 +94,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