From 120d92c6d74d1b8ea544e2c52d5743b822547f95 Mon Sep 17 00:00:00 2001 From: richardbarry 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. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1635 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- 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 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 ) ) -- 2.39.5