From e4aae7b3f63995f0bb767df099ff4a3f5261742d Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Sat, 27 Jul 2013 23:35:23 +0200 Subject: [PATCH] fixed typo in GQueue --- src/gqueue/gqueue.c | 4 ++-- 1 file 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);