From cd3470a0cffbd6b8cec7c44227b33307c9e227ae Mon Sep 17 00:00:00 2001 From: Ben Byer Date: Wed, 16 Apr 2008 22:48:54 -0700 Subject: [PATCH] kludge: miEqEnqueue wants a device, even if we're passing custom messages, so give it one (cherry picked from commit a494ff04b2a14470eaf5a23c7cf6dbdea182c6d1) --- hw/xquartz/darwinEvents.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xquartz/darwinEvents.c b/hw/xquartz/darwinEvents.c index 78708d2b2..70dfdaf7f 100644 --- a/hw/xquartz/darwinEvents.c +++ b/hw/xquartz/darwinEvents.c @@ -511,5 +511,5 @@ void DarwinSendDDXEvent(int type, int argc, ...) { va_end (args); } - mieqEnqueue(NULL, &xe); + mieqEnqueue(darwinPointer, &xe); }