diff options
Diffstat (limited to 'xorg-server/present/present_request.c')
-rw-r--r-- | xorg-server/present/present_request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xorg-server/present/present_request.c b/xorg-server/present/present_request.c index 275a29cdc..c69e68309 100644 --- a/xorg-server/present/present_request.c +++ b/xorg-server/present/present_request.c @@ -90,7 +90,7 @@ proc_present_pixmap(ClientPtr client) ret = dixLookupWindow(&window, stuff->window, client, DixWriteAccess); if (ret != Success) return ret; - ret = dixLookupResourceByType((pointer *) &pixmap, stuff->pixmap, RT_PIXMAP, client, DixReadAccess); + ret = dixLookupResourceByType((void **) &pixmap, stuff->pixmap, RT_PIXMAP, client, DixReadAccess); if (ret != Success) return ret; |