From: RichardBarry Date: Sat, 17 Jan 2009 17:37:50 +0000 (+0000) Subject: Clean up compiler warnings only. X-Git-Tag: V5.1.2~91 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c8a2b80a05985214150fb2a03c2099ed99febba6;p=freertos Clean up compiler warnings only. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@605 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Demo/ARM9_AT91SAM9XE_IAR/main.c b/Demo/ARM9_AT91SAM9XE_IAR/main.c index d8f64c3b4..2229a3949 100644 --- a/Demo/ARM9_AT91SAM9XE_IAR/main.c +++ b/Demo/ARM9_AT91SAM9XE_IAR/main.c @@ -130,6 +130,9 @@ static void prvCheckTask( void * pvParameters ) portTickType xNextWakeTime, xPeriod = mainNO_ERROR_PERIOD; static volatile unsigned portLONG ulErrorCode = 0UL; + /* Just to remove the compiler warning. */ + ( void ) pvParameters; + /* Initialise xNextWakeTime prior to its first use. From this point on the value of the variable is handled automatically by the kernel. */ xNextWakeTime = xTaskGetTickCount();