From b89ff23ad1eb34ce1a56e43410ec663b03056072 Mon Sep 17 00:00:00 2001 From: RichardBarry Date: Sun, 27 Jan 2008 19:25:11 +0000 Subject: [PATCH] Update counting semaphore function prototype. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@145 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- Source/queue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/queue.c b/Source/queue.c index 782408f27..2c6e34215 100644 --- a/Source/queue.c +++ b/Source/queue.c @@ -341,7 +341,7 @@ size_t xQueueSizeInBytes; #if configUSE_COUNTING_SEMAPHORES == 1 - xQueueHandle xQueueCreateCountingSemaphore( unsigned portBASE_TYPE uxCountValue, unsigned portBASE_TYPE uxInitialCount, portBASE_TYPE xIsRecursive ) + xQueueHandle xQueueCreateCountingSemaphore( unsigned portBASE_TYPE uxCountValue, unsigned portBASE_TYPE uxInitialCount ) { xQueueHandle pxHandle; -- 2.39.2