Start to remove unnecessary 'signed char *' casts from strings that are now just plain char * types.

This commit is contained in:
Richard Barry 2013-12-27 14:43:48 +00:00
parent b4116a7c7d
commit da93f1fc4b
261 changed files with 2822 additions and 2815 deletions

View file

@ -133,12 +133,12 @@ void vStartISRTriggeredTask( void )
{
/* Create the task described at the top of this file. The timer is
configured by the task itself. */
xTaskCreate( prvISRTriggeredTask, /* The function that implements the task. */
( const signed char * const ) "ISRt", /* Text name to help debugging - not used by the kernel. */
configMINIMAL_STACK_SIZE, /* The size of the stack to allocate to the task - defined in words, not bytes. */
NULL, /* The parameter to pass into the task. Not used in this case. */
configMAX_PRIORITIES - 1, /* The priority at which the task is created. */
NULL ); /* Used to pass a handle to the created task out of the function. Not used in this case. */
xTaskCreate( prvISRTriggeredTask, /* The function that implements the task. */
"ISRt", /* Text name to help debugging - not used by the kernel. */
configMINIMAL_STACK_SIZE, /* The size of the stack to allocate to the task - defined in words, not bytes. */
NULL, /* The parameter to pass into the task. Not used in this case. */
configMAX_PRIORITIES - 1, /* The priority at which the task is created. */
NULL ); /* Used to pass a handle to the created task out of the function. Not used in this case. */
}
/*-----------------------------------------------------------*/