From: richardbarry Date: Sat, 1 Jan 2011 17:24:03 +0000 (+0000) Subject: Remove unnecessary ';' characters from a couple of macro definitions in the IAR MSP43... X-Git-Tag: V6.1.1~52 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=abeb7e295352dd06f646c0fc70884d28a326e0ff;p=freertos 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 --- 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. */