diff options
author | Joel Bodenmann <joel@unormal.org> | 2013-07-27 23:35:23 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2013-07-27 23:35:23 +0200 |
commit | e4aae7b3f63995f0bb767df099ff4a3f5261742d (patch) | |
tree | c437f84e2c8e06b00fcf838ad80d03116b92564a | |
parent | a76a5d7d7c8899d228f6ccd56b13762c7122448d (diff) | |
download | uGFX-e4aae7b3f63995f0bb767df099ff4a3f5261742d.tar.gz uGFX-e4aae7b3f63995f0bb767df099ff4a3f5261742d.tar.bz2 uGFX-e4aae7b3f63995f0bb767df099ff4a3f5261742d.zip |
fixed typo in GQueue
-rw-r--r-- | src/gqueue/gqueue.c | 4 |
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); |