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

@ -8,7 +8,7 @@
/*------------------------------------------------------------------------
taskutility.C
-
-
-------------------------------------------------------------------------*/
/*************************@INCLUDE_START************************/
@ -138,7 +138,7 @@ void vUtilityStartTraceTask( unsigned portBASE_TYPE uxPriority )
portENTER_CRITICAL();
InitUart0();
portENTER_CRITICAL();
xTaskCreate( vUART0Task, (signed portCHAR *) "UART1", configMINIMAL_STACK_SIZE * 3, ( void * ) NULL, uxPriority, &UART_TaskHandle );
xTaskCreate( vUART0Task, "UART1", configMINIMAL_STACK_SIZE * 3, ( void * ) NULL, uxPriority, &UART_TaskHandle );
}
}
@ -171,7 +171,7 @@ static void vUART0Task( void *pvParameters )
switch( ch )
{
case '1':
vTaskList( (signed char *) buff );
vTaskList( buff );
Puts0( "\n\rThe current task list is as follows...." );
Puts0( "\n\r----------------------------------------------" );
Puts0( "\n\rName State Priority Stack Number" );