summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-04-13 18:45:20 +0200
committerAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-04-13 18:45:20 +0200
commit1d0037149e63ff2583aa384276c27dcb71aab6b6 (patch)
tree943d0c296aa4a7ac2d94236dac8fa53f7a9379fd
parentbb28fba1139216a5f476115b0a902bc1f2a8abf4 (diff)
downloadfreertos-1d0037149e63ff2583aa384276c27dcb71aab6b6.tar.gz
freertos-1d0037149e63ff2583aa384276c27dcb71aab6b6.tar.bz2
freertos-1d0037149e63ff2583aa384276c27dcb71aab6b6.tar.xz
PIC18_SDCC: fix typo in portmacro.h
This patch fixes typo in portmacro.h signed-off-by: Abdoulaye Walsimou Gaye <walsimou@walsimou.com>
-rw-r--r--Source/portable/SDCC/PIC18/portmacro.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/portable/SDCC/PIC18/portmacro.h b/Source/portable/SDCC/PIC18/portmacro.h
index 132cf6d0..08da03cc 100644
--- a/Source/portable/SDCC/PIC18/portmacro.h
+++ b/Source/portable/SDCC/PIC18/portmacro.h
@@ -97,13 +97,13 @@ if(INDF1&portGLOBAL_INT_ENABLE_BIT) \
/*-----------------------------------------------------------*/
/* Task utilities. */
-extern void vPortYield( void ) __naked;
+extern void vPortYield(void) __naked;
#define portYIELD() vPortYield()
/*-----------------------------------------------------------*/
/* Task function macros as described on the FreeRTOS.org WEB site. */
-#define portTASK_FUNCTION_PROTO( vFunction, pvParameters ) void vFunction( void *pvParameters )
-#define portTASK_FUNCTION( vFunction, pvParameters ) void vFunction( void *pvParameters )
+#define portTASK_FUNCTION_PROTO(vFunction, pvParameters) void vFunction(void *pvParameters)
+#define portTASK_FUNCTION(vFunction, pvParameters) void vFunction(void *pvParameters)
/*-----------------------------------------------------------*/
/* Required by the kernel aware debugger. */