From c519ba094d886e3dc52eb3163ebc57b06c5b2e86 Mon Sep 17 00:00:00 2001 From: Richard Barry Date: Mon, 18 Feb 2013 11:28:56 +0000 Subject: [PATCH] Correct spelling of xSuspendedTaskList in eTaskConfirmSleepModeStatus(). --- FreeRTOS/Source/tasks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FreeRTOS/Source/tasks.c b/FreeRTOS/Source/tasks.c index f1d1a0c0e0..eaa074f766 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; }