From 19b8be39bdc10203c345f09fb76acbb449d0c9c8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 1 Feb 2024 22:36:49 +0000 Subject: [PATCH] Uncrustify: triggered by comment. --- tasks.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks.c b/tasks.c index 13c9fb0e1..b54ccd66c 100644 --- a/tasks.c +++ b/tasks.c @@ -3189,10 +3189,10 @@ static void prvInitialiseNewTask( TaskFunction_t pxTaskCode, * to by pxCurrentTCB has just been suspended and pxCurrentTCB * must be adjusted to point to a different task. */ - /* Use temp variable as distinct sequence points for reading - * volatile variables prior to a comparison, per the coding guidelines */ - UBaseType_t uxCurrentListLength = listCURRENT_LIST_LENGTH( &xSuspendedTaskList ); - UBaseType_t uxCurrentNumOfTasks = uxCurrentNumberOfTasks; + /* Use temp variable as distinct sequence points for reading + * volatile variables prior to a comparison, per the coding guidelines */ + UBaseType_t uxCurrentListLength = listCURRENT_LIST_LENGTH( &xSuspendedTaskList ); + UBaseType_t uxCurrentNumOfTasks = uxCurrentNumberOfTasks; if( uxCurrentListLength == uxCurrentNumOfTasks ) {