]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Demo/Common/Minimal/integer.c
Change how volatile is used in some of the standard demos to remove compiler warnings...
[freertos] / FreeRTOS / Demo / Common / Minimal / integer.c
index 8e01ff1c8b37cc68ee5665a83eb9617562c907ff..d99ff52c2776d5c003a0195221e3a49c0bffeb43 100644 (file)
@@ -104,7 +104,7 @@ static portTASK_FUNCTION_PROTO( vCompeteingIntMathTask, pvParameters );
 that the task is still executing.  The check task sets the variable back to\r
 false, flagging an error if the variable is still false the next time it\r
 is called. */\r
-static volatile BaseType_t xTaskCheck[ intgNUMBER_OF_TASKS ] = { ( BaseType_t ) pdFALSE };\r
+static BaseType_t xTaskCheck[ intgNUMBER_OF_TASKS ] = { ( BaseType_t ) pdFALSE };\r
 \r
 /*-----------------------------------------------------------*/\r
 \r