mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2026-07-31 10:14:34 +00:00
Fix compiler warning in TimerDemo.c that is only seen when the file is compiled on 8 bit devices.
This commit is contained in:
@@ -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 ) )
|
||||
|
||||
Reference in New Issue
Block a user