From: richardbarry Date: Sun, 13 Apr 2008 16:29:40 +0000 (+0000) Subject: Remove unused assignment. X-Git-Tag: V5.0.0~11 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=fbcbf797591f7fd3e898749eab35e0e525144c28;p=freertos Remove unused assignment. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@313 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Demo/AVR32_UC3/serial/serial.c b/Demo/AVR32_UC3/serial/serial.c index 2f1b1194d..83eb4023f 100644 --- a/Demo/AVR32_UC3/serial/serial.c +++ b/Demo/AVR32_UC3/serial/serial.c @@ -128,7 +128,7 @@ static portBASE_TYPE prvUSART_ISR_NonNakedBehaviour( void ) /* Because FreeRTOS is not supposed to run with nested interrupts, put all OS calls in a critical section . */ portENTER_CRITICAL(); - retstatus = xQueueSendFromISR(xRxedChars, &cChar, &xHigherPriorityTaskWoken); + xQueueSendFromISR(xRxedChars, &cChar, &xHigherPriorityTaskWoken); portEXIT_CRITICAL(); }