From fbcbf797591f7fd3e898749eab35e0e525144c28 Mon Sep 17 00:00:00 2001 From: richardbarry Date: Sun, 13 Apr 2008 16:29:40 +0000 Subject: [PATCH] Remove unused assignment. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@313 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- Demo/AVR32_UC3/serial/serial.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } -- 2.39.5