summaryrefslogtreecommitdiff
path: root/FreeRTOS
diff options
context:
space:
mode:
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2013-02-18 11:28:56 +0000
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2013-02-18 11:28:56 +0000
commit52766e0dd736a127ee7ea40ef383f8aa6e89998b (patch)
tree18e5276c23f0982e66ac28513c389422edf767bc /FreeRTOS
parent16e7fd1323bca90362a356082f980f547a241ec0 (diff)
downloadfreertos-52766e0dd736a127ee7ea40ef383f8aa6e89998b.tar.gz
Correct spelling of xSuspendedTaskList in eTaskConfirmSleepModeStatus().
git-svn-id: http://svn.code.sf.net/p/freertos/code/trunk@1829 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
Diffstat (limited to 'FreeRTOS')
-rw-r--r--FreeRTOS/Source/tasks.c2
1 files changed, 1 insertions, 1 deletions
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;
}