* Definition of the button poll task described in the comments at the top of\r
  * this file.\r
  */\r
-static void vButtonPollTask( void *pvParameters );\r
+static void prvButtonPollTask( void *pvParameters );\r
 \r
 /*\r
  * Converts a status message value into an appropriate string for display on\r
                /* Create the LCD and button poll tasks, as described at the top of this\r
                file. */\r
                xTaskCreate( prvLCDTask, ( signed char * ) "LCD", configMINIMAL_STACK_SIZE, NULL, mainLCD_TASK_PRIORITY, NULL );\r
-               xTaskCreate( vButtonPollTask, ( signed char * ) "ButPoll", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );\r
+               xTaskCreate( prvButtonPollTask, ( signed char * ) "ButPoll", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );\r
                \r
                /* Create a subset of the standard demo tasks. */\r
                vStartDynamicPriorityTasks();\r
 }\r
 /*-----------------------------------------------------------*/\r
 \r
-static void vButtonPollTask( void *pvParameters )\r
+static void prvButtonPollTask( void *pvParameters )\r
 {\r
 long lLastState = pdTRUE;\r
 long lState;\r