mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-07 13:45:00 -05:00
Fix typo in UBaseType_t
This commit is contained in:
parent
7a9a41f3eb
commit
ef23fb8fae
1 changed files with 1 additions and 1 deletions
2
tasks.c
2
tasks.c
|
|
@ -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 )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue