From: richardbarry Date: Fri, 15 Aug 2008 15:59:42 +0000 (+0000) Subject: Add bracket where appropriate. X-Git-Tag: V5.1.2~233 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f7a14dbd1776d1a91a9912e9fc9cf71db9a56002;p=freertos Add bracket where appropriate. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@463 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Demo/ColdFire_MCF5282_Eclipse/RTOSDemo/FreeRTOS_Tick_Setup.c b/Demo/ColdFire_MCF5282_Eclipse/RTOSDemo/FreeRTOS_Tick_Setup.c index 8e19f27a6..ef6ce4241 100644 --- a/Demo/ColdFire_MCF5282_Eclipse/RTOSDemo/FreeRTOS_Tick_Setup.c +++ b/Demo/ColdFire_MCF5282_Eclipse/RTOSDemo/FreeRTOS_Tick_Setup.c @@ -102,7 +102,7 @@ const unsigned portSHORT usCompareMatchValue = ( ( configCPU_CLOCK_HZ / portPRES /* Do the same for vector 63 (interrupt controller 0. I don't think the write to MCF_INTC0_IMRH is actually required here but is included for completeness. */ - MCF_INTC0_ICR63 = ( 0 | configKERNEL_INTERRUPT_PRIORITY << 3 ); + MCF_INTC0_ICR63 = ( 0 | ( configKERNEL_INTERRUPT_PRIORITY << 3 ) ); MCF_INTC0_IMRH &= ~( MCF_INTC_IMRH_INT_MASK63 ); /* Configure PIT0 to generate the RTOS tick. */