From f7a14dbd1776d1a91a9912e9fc9cf71db9a56002 Mon Sep 17 00:00:00 2001 From: richardbarry Date: Fri, 15 Aug 2008 15:59:42 +0000 Subject: [PATCH] Add bracket where appropriate. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@463 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- Demo/ColdFire_MCF5282_Eclipse/RTOSDemo/FreeRTOS_Tick_Setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */ -- 2.39.5