aboutsummaryrefslogtreecommitdiffstats
path: root/src/gqueue
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-07-27 23:35:23 +0200
committerJoel Bodenmann <joel@unormal.org>2013-07-27 23:35:23 +0200
commite4aae7b3f63995f0bb767df099ff4a3f5261742d (patch)
treec437f84e2c8e06b00fcf838ad80d03116b92564a /src/gqueue
parenta76a5d7d7c8899d228f6ccd56b13762c7122448d (diff)
downloaduGFX-e4aae7b3f63995f0bb767df099ff4a3f5261742d.tar.gz
uGFX-e4aae7b3f63995f0bb767df099ff4a3f5261742d.tar.bz2
uGFX-e4aae7b3f63995f0bb767df099ff4a3f5261742d.zip
fixed typo in GQueue
Diffstat (limited to 'src/gqueue')
-rw-r--r--src/gqueue/gqueue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gqueue/gqueue.c b/src/gqueue/gqueue.c
index 8b27bd41..f73c43df 100644
--- a/src/gqueue/gqueue.c
+++ b/src/gqueue/gqueue.c
@@ -103,7 +103,7 @@
pi = pqueue->head;
pqueue->head = pi->next;
pi->next = 0;
- gfxSytemUnlock();
+ gfxSystemUnlock();
return pi;
}
void gfxQueueGSyncPut(gfxQueueGSync *pqueue, gfxQueueGSyncItem *pitem) {
@@ -184,7 +184,7 @@
pi = pqueue->head;
pqueue->head = pi->next;
pi->next = 0;
- gfxSytemUnlock();
+ gfxSystemUnlock();
gfxSemSignalI(&pi->sem);
gfxSemDestroy(&pi->sem);