From: richardbarry Date: Mon, 18 Feb 2013 11:28:56 +0000 (+0000) Subject: Correct spelling of xSuspendedTaskList in eTaskConfirmSleepModeStatus(). X-Git-Tag: V7.4.0~2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8a16d238dae06ce52442550b3ace4c888279a5cf;p=freertos Correct spelling of xSuspendedTaskList in eTaskConfirmSleepModeStatus(). git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1829 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/FreeRTOS/Source/tasks.c b/FreeRTOS/Source/tasks.c index f1d1a0c0e..eaa074f76 100644 --- a/FreeRTOS/Source/tasks.c +++ b/FreeRTOS/Source/tasks.c @@ -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; }