From 8a16d238dae06ce52442550b3ace4c888279a5cf Mon Sep 17 00:00:00 2001 From: richardbarry Date: Mon, 18 Feb 2013 11:28:56 +0000 Subject: [PATCH] Correct spelling of xSuspendedTaskList in eTaskConfirmSleepModeStatus(). git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1829 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- 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 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; } -- 2.39.5