From abeb7e295352dd06f646c0fc70884d28a326e0ff Mon Sep 17 00:00:00 2001 From: richardbarry 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. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1205 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- 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 0e8e6fb5c..a84a268b4 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. */ -- 2.39.5