Change 'signed char *pcTaskName) to 'char *pcTaskName' in vApplicationStackOverflowHook().

This commit is contained in:
Richard Barry 2013-12-27 16:30:19 +00:00
parent 3517bbdcce
commit f292243dcf
85 changed files with 112 additions and 112 deletions

View file

@ -413,7 +413,7 @@ void vApplicationIdleHook( void )
}
/*-----------------------------------------------------------*/
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
{
/* Just to remove compiler warnings. This function will only actually
get called if configCHECK_FOR_STACK_OVERFLOW is set to a non zero value.