From c9058dd383ad475315c7867933dc9412918be81a Mon Sep 17 00:00:00 2001 From: Joseph Julicher Date: Wed, 27 Sep 2023 21:01:22 -0700 Subject: [PATCH] Revert "Uncrustify: triggered by comment." This reverts commit e534f46f2d772068fe787130ef615d2aea65a2df. --- sample_configuration/FreeRTOSConfig.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/sample_configuration/FreeRTOSConfig.h b/sample_configuration/FreeRTOSConfig.h index b0ff55306b8..0c60d98de73 100644 --- a/sample_configuration/FreeRTOSConfig.h +++ b/sample_configuration/FreeRTOSConfig.h @@ -301,13 +301,13 @@ * number of the failing assert (for example, "vAssertCalled( __FILE__, __LINE__ )" * or it can simple disable interrupts and sit in a loop to halt all execution * on the failing line for viewing in a debugger. */ -#define configASSERT( x ) \ - if( ( x ) == 0 ) \ - { \ - taskDISABLE_INTERRUPTS(); \ - for( ; ; ) \ - ; \ - } +#define configASSERT( x ) \ + if( ( x ) == 0 ) \ + { \ + taskDISABLE_INTERRUPTS(); \ + for( ;; ) \ + ; \ + } /******************************************************************************/ /* Cortex-M MPU specific definitions. *****************************************/