From: RichardBarry Date: Sun, 27 Jan 2008 19:25:11 +0000 (+0000) Subject: Update counting semaphore function prototype. X-Git-Tag: V4.7.1~3 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b89ff23ad1eb34ce1a56e43410ec663b03056072;p=freertos Update counting semaphore function prototype. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@145 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- 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;