aboutsummaryrefslogtreecommitdiffstats
path: root/src/gos
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-07-22 13:51:40 +0200
committerJoel Bodenmann <joel@unormal.org>2013-07-22 13:51:40 +0200
commite5c6fce1d9538b11df1dcf99c5856dfdac89b24c (patch)
treee8b531bd40fffd2987f2e048c2ab49fb60653982 /src/gos
parentc40021af0114218a7754e8c5850b24c077bf1c1d (diff)
downloaduGFX-e5c6fce1d9538b11df1dcf99c5856dfdac89b24c.tar.gz
uGFX-e5c6fce1d9538b11df1dcf99c5856dfdac89b24c.tar.bz2
uGFX-e5c6fce1d9538b11df1dcf99c5856dfdac89b24c.zip
POSIX fix
Diffstat (limited to 'src/gos')
-rw-r--r--src/gos/posix.c2
1 files changed, 1 insertions, 1 deletions
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) {