]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Demo/ColdFire_MCF52233_Eclipse/RTOSDemo/webserver/httpd-cgi.c
Start to remove unnecessary 'signed char *' casts from strings that are now just...
[freertos] / FreeRTOS / Demo / ColdFire_MCF52233_Eclipse / RTOSDemo / webserver / httpd-cgi.c
index 7b7fef7fd9214077350ce654f7d89b3632848e58..9e880759add38842ae56e813cd2882d0eb45d63c 100644 (file)
@@ -206,7 +206,7 @@ PT_THREAD(net_stats(struct httpd_state *s, char *ptr))
 }\r
 /*---------------------------------------------------------------------------*/\r
 \r
-extern void vTaskList( signed char *pcWriteBuffer );\r
+extern void vTaskList( char *pcWriteBuffer );\r
 extern unsigned long ulGetErrorCode( void );\r
 \r
 static char cCountBuf[ 32 ];\r
@@ -217,7 +217,7 @@ generate_rtos_stats(void *arg)
        ( void ) arg;\r
        lRefreshCount++;\r
        sprintf( cCountBuf, "<p><br>Refresh count = %d, Error code = %d (0 = no errors)", (int)lRefreshCount, (int)ulGetErrorCode() );\r
-    vTaskList( uip_appdata );\r
+    vTaskList( ( char * ) uip_appdata );\r
        strcat( uip_appdata, cCountBuf );\r
 \r
        return strlen( uip_appdata );\r
@@ -272,7 +272,7 @@ void vApplicationProcessFormInput( char *pcInputString )
 {\r
 char *c = pcInputString;\r
 \r
-       /* Process the form input sent by the IO page of the served HTML. \r
+       /* Process the form input sent by the IO page of the served HTML.\r
        This just contains an instruction to either turn on or off the LED. */\r
        while( ( *c != '?' ) && ( *c != 0x00 ) )\r
        {\r