diff options
author | Keith Packard <keithp@keithp.com> | 2015-09-01 11:20:04 -0700 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2016-07-18 15:27:51 -0400 |
commit | fb0802113b4c57819cba15d64baf79bf4148607e (patch) | |
tree | f040ef9bac4f3a13d4bf9191aa28503a93cd7709 /miext | |
parent | 410bc047480a9f98df678dc850bc6b99c3cfb5bf (diff) |
Remove readmask from screen block/wakeup handler
With no users of the interface needing the readmask anymore, we can
remove it from the argument passed to these functions.
Signed-off-by: Keith Packard <keithp@keithp.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'miext')
-rw-r--r-- | miext/shadow/shadow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miext/shadow/shadow.c b/miext/shadow/shadow.c index 405c4dddb..b8e23dae6 100644 --- a/miext/shadow/shadow.c +++ b/miext/shadow/shadow.c @@ -65,14 +65,14 @@ shadowRedisplay(ScreenPtr pScreen) } static void -shadowBlockHandler(ScreenPtr pScreen, void *timeout, void *pRead) +shadowBlockHandler(ScreenPtr pScreen, void *timeout) { shadowBuf(pScreen); shadowRedisplay(pScreen); unwrap(pBuf, pScreen, BlockHandler); - pScreen->BlockHandler(pScreen, timeout, pRead); + pScreen->BlockHandler(pScreen, timeout); wrap(pBuf, pScreen, BlockHandler); } |