Correct spelling of xSuspendedTaskList in eTaskConfirmSleepModeStatus().

This commit is contained in:
Richard Barry 2013-02-18 11:28:56 +00:00
parent dcc90bb6d9
commit c519ba094d

View file

@ -2202,7 +2202,7 @@ static portTASK_FUNCTION( prvIdleTask, pvParameters )
suspended list (which might mean they have an infinite block
time rather than actually being suspended) then it is safe to
turn all clocks off and just wait for external initerrupts. */
if( listCURRENT_LIST_LENGTH( &xSuspendedTasksList ) == ( uxCurrentNumberOfTasks - uxNonApplicationTasks ) )
if( listCURRENT_LIST_LENGTH( &xSuspendedTaskList ) == ( uxCurrentNumberOfTasks - uxNonApplicationTasks ) )
{
eReturn = eNoTasksWaitingTimeout;
}