From c1d5690da644e251e41213141bf918af9afdf34d Mon Sep 17 00:00:00 2001 From: Richard Barry Date: Sun, 13 Apr 2008 16:29:40 +0000 Subject: [PATCH] Remove unused assignment. --- 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(); }