summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/PIC24_MPLAB/main.c
diff options
context:
space:
mode:
authorRichard Barry <ribarry@amazon.com>2013-12-27 14:43:48 +0000
committerRichard Barry <ribarry@amazon.com>2013-12-27 14:43:48 +0000
commitda93f1fc4b398e1adaf0756a087614ff2b334559 (patch)
treeb2f741012a673c062e870239df3a250291325e31 /FreeRTOS/Demo/PIC24_MPLAB/main.c
parentb4116a7c7dcb12741aeb9806a356be6b0ad76e1e (diff)
downloadfreertos-git-da93f1fc4b398e1adaf0756a087614ff2b334559.tar.gz
Start to remove unnecessary 'signed char *' casts from strings that are now just plain char * types.
Diffstat (limited to 'FreeRTOS/Demo/PIC24_MPLAB/main.c')
-rw-r--r--FreeRTOS/Demo/PIC24_MPLAB/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/FreeRTOS/Demo/PIC24_MPLAB/main.c b/FreeRTOS/Demo/PIC24_MPLAB/main.c
index d489b1448..7974e6aa6 100644
--- a/FreeRTOS/Demo/PIC24_MPLAB/main.c
+++ b/FreeRTOS/Demo/PIC24_MPLAB/main.c
@@ -184,7 +184,7 @@ int main( void )
vCreateBlockTimeTasks();
/* Create the test tasks defined within this file. */
- xTaskCreate( vCheckTask, ( signed char * ) "Check", mainCHECK_TAKS_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );
+ xTaskCreate( vCheckTask, "Check", mainCHECK_TAKS_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );
/* Start the task that will control the LCD. This returns the handle
to the queue used to write text out to the task. */