From 7d0f249fad25df72aaa07817b1218a0241ae580c Mon Sep 17 00:00:00 2001
From: Richard Barry <ribarry@amazon.com>
Date: Mon, 4 Feb 2008 08:42:12 +0000
Subject: [PATCH] Correct API call used to create mutex.

---
 Demo/Common/Minimal/recmutex.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Demo/Common/Minimal/recmutex.c b/Demo/Common/Minimal/recmutex.c
index 3a7d398a47..755505cd9d 100644
--- a/Demo/Common/Minimal/recmutex.c
+++ b/Demo/Common/Minimal/recmutex.c
@@ -119,7 +119,7 @@ void vStartRecursiveMutexTasks( void )
 {
 	/* Just creates the mutex and the three tasks. */
 
-	xMutex = xSemaphoreCreateMutex();
+	xMutex = xSemaphoreCreateRecursiveMutex();
 
 	if( xMutex != NULL )
 	{