mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-06-04 03:19:04 -04: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:
parent
de4a548c07
commit
5832e409d1
|
@ -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 ) )
|
||||
|
|
Loading…
Reference in a new issue