diff options
author | Jeremy Huddleston <jeremyhu@apple.com> | 2011-07-15 10:39:39 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@apple.com> | 2011-07-15 10:40:12 -0700 |
commit | 89bfa0c633f3096cca6f983bca1507d3f4b902a8 (patch) | |
tree | 3d5ccbf12917cc459c5e84036096b3c70c6f3a36 /hw/xquartz | |
parent | 82f5521a6d91ebcd2a4400f6c221ad625edc99a1 (diff) |
XQuartz: DarwinEQFini doesn't return Bool
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
Diffstat (limited to 'hw/xquartz')
-rw-r--r-- | hw/xquartz/darwinEvents.c | 2 | ||||
-rw-r--r-- | hw/xquartz/darwinEvents.h | 2 |
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); |