summaryrefslogtreecommitdiff
path: root/FreeRTOS
diff options
context:
space:
mode:
authorRichard Barry <ribarry@amazon.com>2013-11-12 13:06:18 +0000
committerRichard Barry <ribarry@amazon.com>2013-11-12 13:06:18 +0000
commita2cfaa7cd93fe91600dfe1b52037a45af1843029 (patch)
treebe719833c223e068b0af77eed8ed8153da1b330d /FreeRTOS
parent8320dfb885d569dc73362a01d5439c9fcd698372 (diff)
downloadfreertos-git-a2cfaa7cd93fe91600dfe1b52037a45af1843029.tar.gz
Correct build of helper function for ports where the stack grows up.
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 ca726f1b7..c0f151958 100644
--- a/FreeRTOS/Source/tasks.c
+++ b/FreeRTOS/Source/tasks.c
@@ -2549,7 +2549,7 @@ tskTCB *pxNewTCB;
#if ( portSTACK_GROWTH > 0 )
{
- ppxTaskStatusArray[ uxTask ].usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( unsigned char * ) pxNextTCB->pxEndOfStack );
+ pxTaskStatusArray[ uxTask ].usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( unsigned char * ) pxNextTCB->pxEndOfStack );
}
#else
{