mi: Just some formatting consistency...

(cherry picked from commit 06655dac00)
This commit is contained in:
Jeremy Huddleston 2008-10-23 14:28:50 -07:00
parent 050e46e09e
commit ee6a73b359

View File

@ -258,12 +258,12 @@ mieqProcessInputEvents(void)
pthread_mutex_unlock(&miEventQueueMutex);
#endif
if (miEventQueue.handlers[e.event->u.u.type]) {
if (miEventQueue.handlers[e.event[0].u.u.type]) {
/* If someone's registered a custom event handler, let them
* steal it. */
miEventQueue.handlers[e.event->u.u.type](e.pScreen->myNum,
e.event, e.pDev,
e.nevents);
miEventQueue.handlers[e.event[0].u.u.type](e.pScreen->myNum,
e.event, e.pDev,
e.nevents);
}
else if (e.pScreen != miEventQueue.pDequeueScreen) {
/* Assumption - screen switching can only occur on motion events. */