From 5832e409d19fcb7bbe537301715bf013b8806b16 Mon Sep 17 00:00:00 2001 From: Richard Barry Date: Tue, 22 Nov 2011 13:18:54 +0000 Subject: [PATCH] Fix compiler warning in TimerDemo.c that is only seen when the file is compiled on 8 bit devices. --- Demo/Common/Minimal/TimerDemo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Demo/Common/Minimal/TimerDemo.c b/Demo/Common/Minimal/TimerDemo.c index ec2d63bd84..82581938a4 100644 --- a/Demo/Common/Minimal/TimerDemo.c +++ b/Demo/Common/Minimal/TimerDemo.c @@ -708,7 +708,7 @@ static portTickType uxTick = ( portTickType ) -1; /* The xHigherPriorityTaskWoken parameter is not used in this case as this function is called from the tick hook anyway. However the API required it to be present. */ -portBASE_TYPE xHigherPriorityTaskWoken = pdTRUE; +signed portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE; portTickType xMargin; if( configTIMER_TASK_PRIORITY != ( configMAX_PRIORITIES - 1 ) )