Skip to content

Commit

Permalink
parenthesize expression-like macro (#592)
Browse files Browse the repository at this point in the history
* parenthesize expression-like macro

* fixed wrong indentation
  • Loading branch information
tcpluess authored Nov 28, 2022
1 parent b3b097b commit 04dfb70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/FreeRTOS.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 04dfb70

Please sign in to comment.