summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Huddleston <jeremyhu@apple.com>2011-07-15 10:39:39 -0700
committerJeremy Huddleston <jeremyhu@apple.com>2011-07-15 10:40:12 -0700
commit89bfa0c633f3096cca6f983bca1507d3f4b902a8 (patch)
tree3d5ccbf12917cc459c5e84036096b3c70c6f3a36
parent82f5521a6d91ebcd2a4400f6c221ad625edc99a1 (diff)
XQuartz: DarwinEQFini doesn't return Bool
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
-rw-r--r--hw/xquartz/darwinEvents.c2
-rw-r--r--hw/xquartz/darwinEvents.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/hw/xquartz/darwinEvents.c b/hw/xquartz/darwinEvents.c
index 1f22099d6..c367e3c1c 100644
--- a/hw/xquartz/darwinEvents.c
+++ b/hw/xquartz/darwinEvents.c
@@ -371,7 +371,7 @@ Bool DarwinEQInit(void) {
return TRUE;
}
-Bool DarwinEQFini(void) {
+void DarwinEQFini(void) {
mieqFini();
}
diff --git a/hw/xquartz/darwinEvents.h b/hw/xquartz/darwinEvents.h
index bd29d51fd..aefb5c7bb 100644
--- a/hw/xquartz/darwinEvents.h
+++ b/hw/xquartz/darwinEvents.h
@@ -32,7 +32,7 @@
#define XQUARTZ_VALUATOR_LIMIT (1 << 16)
Bool DarwinEQInit(void);
-Bool DarwinEQFini(void);
+void DarwinEQFini(void);
void DarwinEQEnqueue(const xEventPtr e);
void DarwinEQPointerPost(DeviceIntPtr pDev, xEventPtr e);
void DarwinEQSwitchScreen(ScreenPtr pScreen, Bool fromDIX);