Remove some casting to keep the Keil/RVDS compiler quiet.

This commit is contained in:
Richard Barry 2006-09-24 10:03:55 +00:00
parent 155d8d1828
commit 4508e6fe73
2 changed files with 3 additions and 3 deletions

View file

@ -100,7 +100,7 @@ portSHORT sTask;
for( sTask = 0; sTask < intgNUMBER_OF_TASKS; sTask++ )
{
xTaskCreate( vCompeteingIntMathTask, ( const signed portCHAR * const ) "IntMath", intgSTACK_SIZE, ( void * ) &( xTaskCheck[ sTask ] ), uxPriority, ( xTaskHandle * ) NULL );
xTaskCreate( vCompeteingIntMathTask, ( signed portCHAR * ) "IntMath", intgSTACK_SIZE, ( void * ) &( xTaskCheck[ sTask ] ), uxPriority, ( xTaskHandle * ) NULL );
}
}
/*-----------------------------------------------------------*/