Fix typo in UBaseType_t

This commit is contained in:
bradleysmith23 2024-02-01 14:31:57 -08:00
parent 7a9a41f3eb
commit ef23fb8fae

View file

@ -3192,7 +3192,7 @@ static void prvInitialiseNewTask( TaskFunction_t pxTaskCode,
/* 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;
UBaseType_t uxCurrentNumOfTasks = uxCurrentNumberOfTasks;
if( uxCurrentListLength == uxCurrentNumOfTasks )
{