From: richardbarry Date: Tue, 22 Nov 2011 13:18:54 +0000 (+0000) Subject: Fix compiler warning in TimerDemo.c that is only seen when the file is compiled on... X-Git-Tag: V7.1.0~25 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=120d92c6d74d1b8ea544e2c52d5743b822547f95;p=freertos Fix compiler warning in TimerDemo.c that is only seen when the file is compiled on 8 bit devices. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1635 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Demo/Common/Minimal/TimerDemo.c b/Demo/Common/Minimal/TimerDemo.c index ec2d63bd8..82581938a 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 ) )