diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2016-07-19 13:35:37 +0100 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-07-19 08:10:11 -0700 |
commit | 2a79be9e4dd1b6ba00b69ff40bc5257ec84d34da (patch) | |
tree | be7d9c079ac64666408cf9fac2914910385c6b94 /hw | |
parent | 60a91031d13e4d29c383087120e318f6b528b6e5 (diff) |
hw/xwin: Update BlockHandler function signature
Update for removal of fdset from Block/Wakeup handler API in 9d15912a
Signed-off-by: Jon Turney <jon.turney@dronecode.org.uk>
Reviewed-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/xwin/win.h | 3 | ||||
-rw-r--r-- | hw/xwin/winblock.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/hw/xwin/win.h b/hw/xwin/win.h index 9fa697dcc..e89f730b0 100644 --- a/hw/xwin/win.h +++ b/hw/xwin/win.h @@ -717,8 +717,7 @@ void winSetAuthorization(void); void -winBlockHandler(ScreenPtr pScreen, - void *pTimeout, void *pReadMask); +winBlockHandler(ScreenPtr pScreen, void *pTimeout); #ifdef XWIN_CLIPBOARD /* diff --git a/hw/xwin/winblock.c b/hw/xwin/winblock.c index 8b846520c..110740d55 100644 --- a/hw/xwin/winblock.c +++ b/hw/xwin/winblock.c @@ -36,8 +36,7 @@ /* See Porting Layer Definition - p. 6 */ void -winBlockHandler(ScreenPtr pScreen, - void *pTimeout, void *pReadMask) +winBlockHandler(ScreenPtr pScreen, void *pTimeout) { #if defined(XWIN_CLIPBOARD) || defined(XWIN_MULTIWINDOW) winScreenPriv(pScreen); |