From 1d0037149e63ff2583aa384276c27dcb71aab6b6 Mon Sep 17 00:00:00 2001 From: Abdoulaye Walsimou Gaye Date: Mon, 13 Apr 2009 18:45:20 +0200 Subject: PIC18_SDCC: fix typo in portmacro.h This patch fixes typo in portmacro.h signed-off-by: Abdoulaye Walsimou Gaye --- Source/portable/SDCC/PIC18/portmacro.h | 6 +++--- 1 file 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. */ -- cgit v1.2.3