From 304495350ca3fdabdf34505b3136368c14dd76e3 Mon Sep 17 00:00:00 2001 From: Richard Barry Date: Sat, 1 Jan 2011 17:24:03 +0000 Subject: [PATCH] Remove unnecessary ';' characters from a couple of macro definitions in the IAR MSP430X port layer. --- Source/portable/IAR/MSP430X/portmacro.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/portable/IAR/MSP430X/portmacro.h b/Source/portable/IAR/MSP430X/portmacro.h index 0e8e6fb5cc..a84a268b44 100644 --- a/Source/portable/IAR/MSP430X/portmacro.h +++ b/Source/portable/IAR/MSP430X/portmacro.h @@ -87,8 +87,8 @@ /*-----------------------------------------------------------*/ /* Interrupt control macros. */ -#define portDISABLE_INTERRUPTS() _DINT(); -#define portENABLE_INTERRUPTS() _EINT(); +#define portDISABLE_INTERRUPTS() _DINT() +#define portENABLE_INTERRUPTS() _EINT() /*-----------------------------------------------------------*/ /* Critical section control macros. */