From: richardbarry Date: Sun, 13 Apr 2008 16:30:29 +0000 (+0000) Subject: Add variable initialisation. Doesn't really make a difference, just neater. X-Git-Tag: V5.0.0~10 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a64a8cd89d06fe95792b7460f0e5d1842b02a208;p=freertos Add variable initialisation. Doesn't really make a difference, just neater. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@314 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Demo/AVR_ATMega323_IAR/serial/serial.c b/Demo/AVR_ATMega323_IAR/serial/serial.c index e6e5d8e14..d9259abbb 100644 --- a/Demo/AVR_ATMega323_IAR/serial/serial.c +++ b/Demo/AVR_ATMega323_IAR/serial/serial.c @@ -199,7 +199,7 @@ portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE; __interrupt void SIG_UART_DATA( void ) { -signed portCHAR cChar, cTaskWoken; +signed portCHAR cChar, cTaskWoken = pdFALSE; if( xQueueReceiveFromISR( xCharsForTx, &cChar, &cTaskWoken ) == pdTRUE ) {