From 49bb912605e9fa29b526af0c14356d7a3d7c219c Mon Sep 17 00:00:00 2001 From: bradleysmith23 Date: Wed, 31 Jan 2024 14:03:28 -0800 Subject: [PATCH] Add semiicolons that were accidentally removed --- tasks.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks.c b/tasks.c index 45f16e9ad..2e8b92fa3 100644 --- a/tasks.c +++ b/tasks.c @@ -3357,7 +3357,7 @@ static void prvInitialiseNewTask( TaskFunction_t pxTaskCode, /* The ready list can be accessed even if the scheduler is * suspended because this is inside a critical section. */ ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - prvAddTaskToReadyList( pxTCB ) + prvAddTaskToReadyList( pxTCB ); /* This yield may not cause the task just resumed to run, * but will leave the lists in the correct state for the @@ -3943,7 +3943,7 @@ BaseType_t xTaskResumeAll( void ) listREMOVE_ITEM( &( pxTCB->xEventListItem ) ); portMEMORY_BARRIER(); listREMOVE_ITEM( &( pxTCB->xStateListItem ) ); - prvAddTaskToReadyList( pxTCB ) + prvAddTaskToReadyList( pxTCB ); #if ( configNUMBER_OF_CORES == 1 ) {