From fd7d7b4e1086935a1c97c1174a2cbe19029d18cb Mon Sep 17 00:00:00 2001 From: RichardBarry Date: Fri, 6 Feb 2009 13:30:39 +0000 Subject: [PATCH] Remove unnecessary semicolon. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@686 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- Source/portable/IAR/V850ES/portmacro.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() /*-----------------------------------------------------------*/ -- 2.39.2