From e5c6fce1d9538b11df1dcf99c5856dfdac89b24c Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Mon, 22 Jul 2013 13:51:40 +0200 Subject: [PATCH] POSIX fix --- src/gos/posix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gos/posix.c b/src/gos/posix.c index 49fcdea4..234fc3a5 100644 --- a/src/gos/posix.c +++ b/src/gos/posix.c @@ -29,7 +29,7 @@ void gfxSystemLock(void) { } void gfxSystemUnlock(void) { - gfxMutexLeave(&SystemMutex); + gfxMutexExit(&SystemMutex); } void gfxHalt(const char *msg) {