mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-19 09:38:32 -04:00
Remove compiler warnings.
This commit is contained in:
parent
019c6417d7
commit
b521d70e7e
3 changed files with 20 additions and 15 deletions
|
@ -151,7 +151,7 @@ version. */
|
|||
|
||||
#ifdef __ICCARM__
|
||||
void vAssertCalled( const char *pcFile, unsigned long ulLine );
|
||||
#define configASSERT( x ) if( x == 0 ) vAssertCalled( __FILE__, __LINE__ );
|
||||
#define configASSERT( x ) if( ( x ) == 0 ) vAssertCalled( __FILE__, __LINE__ );
|
||||
#endif
|
||||
|
||||
#endif /* FREERTOS_CONFIG_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue