From: RichardBarry Date: Fri, 6 Feb 2009 13:30:39 +0000 (+0000) Subject: Remove unnecessary semicolon. X-Git-Tag: V5.1.2~10 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=fd7d7b4e1086935a1c97c1174a2cbe19029d18cb;p=freertos Remove unnecessary semicolon. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@686 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Source/portable/IAR/V850ES/portmacro.h b/Source/portable/IAR/V850ES/portmacro.h index 92afd1b30..bc6a2f0a5 100644 --- a/Source/portable/IAR/V850ES/portmacro.h +++ b/Source/portable/IAR/V850ES/portmacro.h @@ -130,7 +130,7 @@ extern void portRESTORE_CONTEXT( void ); #define portYIELD() __asm ( "trap 0" ) #define portNOP() __asm ( "NOP" ) extern void vTaskSwitchContext( void ); -#define portYIELD_FROM_ISR( xHigherPriorityTaskWoken ) if( xHigherPriorityTaskWoken ) vTaskSwitchContext(); +#define portYIELD_FROM_ISR( xHigherPriorityTaskWoken ) if( xHigherPriorityTaskWoken ) vTaskSwitchContext() /*-----------------------------------------------------------*/