This commit is contained in:
Richard Barry
2014-02-17 19:41:29 +00:00
parent a2089bbcf6
commit 0f6b699eef
3 changed files with 7 additions and 7 deletions

View File

@ -599,7 +599,7 @@ TickType_t xTimeNow;
/* Commands that are positive are timer commands rather than pended
function calls. */
if( xMessage.xMessageID >= 0 )
if( xMessage.xMessageID >= ( BaseType_t ) 0 )
{
/* The messages uses the xTimerParameters member to work on a
software timer. */
@ -805,7 +805,7 @@ Timer_t *pxTimer = ( Timer_t * ) xTimer;
taskEXIT_CRITICAL();
return xTimerIsInActiveList;
}
} /*lint !e818 Can't be pointer to const due to the typedef. */
/*-----------------------------------------------------------*/
void *pvTimerGetTimerID( const TimerHandle_t xTimer )