summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorRichardBarry <RichardBarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2009-02-06 13:30:39 +0000
committerRichardBarry <RichardBarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2009-02-06 13:30:39 +0000
commitaa2dfe0362be22b5fa450be147b12399fe95cd3e (patch)
tree6dc800b684793ea118be84dc373e40c3cf9440a3 /Source
parentdee7bc297519cace8fab0506070c050ff4139a59 (diff)
downloadfreertos-aa2dfe0362be22b5fa450be147b12399fe95cd3e.tar.gz
freertos-aa2dfe0362be22b5fa450be147b12399fe95cd3e.tar.bz2
freertos-aa2dfe0362be22b5fa450be147b12399fe95cd3e.tar.xz
Remove unnecessary semicolon.
git-svn-id: https://freertos.svn.sourceforge.net/svnroot/freertos/trunk@686 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
Diffstat (limited to 'Source')
-rw-r--r--Source/portable/IAR/V850ES/portmacro.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/portable/IAR/V850ES/portmacro.h b/Source/portable/IAR/V850ES/portmacro.h
index 92afd1b3..bc6a2f0a 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()
/*-----------------------------------------------------------*/