Fix compiler warning in TimerDemo.c that is only seen when the file is compiled on 8 bit devices.

pull/1/head
Richard Barry 13 years ago
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…
Cancel
Save