]> rtime.felk.cvut.cz Git - pes-rpp/rpp-test-sw.git/blobdiff - rpp-test-sw/cmdproc/src/cmdproc_freertos.c
Fix warnings
[pes-rpp/rpp-test-sw.git] / rpp-test-sw / cmdproc / src / cmdproc_freertos.c
index 84fd6e19c2fd31ecf2ee263b5487449e73306a76..536f00712e35506309311be5cdc4ccb674a19fb6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2012-2013 Czech Technical University in Prague
+ * Copyright (C) 2012-2015 Czech Technical University in Prague
  *
  * Created on: 1.8.2012
  *
@@ -42,7 +42,7 @@ void initCmdProc(unsigned portBASE_TYPE priority)
 {
        int taskRetVal;
 
-       if ((taskRetVal = xTaskCreate(processCmd, (const signed char *)"processCmd", 1000, NULL, priority, processCmdHandler)) != pdPASS) {
+       if ((taskRetVal = xTaskCreate(processCmd, "processCmd", 1000, NULL, priority, processCmdHandler)) != pdPASS) {
                rpp_sci_printf("FreeRTOS: Creating task processCmd failed. Error code: %d", taskRetVal);
                /* An error occurred, block program */
                while (1)