From: richardbarry Date: Sun, 13 Apr 2008 16:34:12 +0000 (+0000) Subject: Add variable initialisation. Doesn't really make a difference, just neater. X-Git-Tag: V5.0.0~6 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=4616dcb13ac01c94700be1fe2f7c24a779f5f668;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@318 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Demo/msp430_GCC/serial/serial.c b/Demo/msp430_GCC/serial/serial.c index fdad7e8be..b6c7cf11d 100644 --- a/Demo/msp430_GCC/serial/serial.c +++ b/Demo/msp430_GCC/serial/serial.c @@ -235,7 +235,7 @@ portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE; interrupt (UART1TX_VECTOR) vTxISR( void ) { signed portCHAR cChar; -portBASE_TYPE xTaskWoken; +portBASE_TYPE xTaskWoken = pdFALSE; /* The previous character has been transmitted. See if there are any further characters waiting transmission. */