diff --git a/sample_configuration/FreeRTOSConfig.h b/sample_configuration/FreeRTOSConfig.h
index b0ff55306..0c60d98de 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. *****************************************/