From 354a57ed5e5b30563539de577a687e0842bc1065 Mon Sep 17 00:00:00 2001 From: Richard Barry Date: Sun, 27 Jan 2008 19:25:11 +0000 Subject: [PATCH] Update counting semaphore function prototype. --- 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;