A few additional casts to keep the Renesas RX compiler happy.

This commit is contained in:
Richard Barry 2014-05-29 13:39:48 +00:00
parent 74ffdb0b89
commit ef254df85f
3 changed files with 6 additions and 5 deletions

View file

@ -469,6 +469,6 @@ static unsigned long ulLastLoopCounter = 0;
/* Errors detected in the task itself will have latched xErrorDetected
to true. */
return !xErrorDetected;
return ( portBASE_TYPE ) !xErrorDetected;
}