diff options
Diffstat (limited to 'src/Selection.c')
-rw-r--r-- | src/Selection.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Selection.c b/src/Selection.c index 7f4769c..357870b 100644 --- a/src/Selection.c +++ b/src/Selection.c @@ -41,9 +41,9 @@ XFixesSelectSelectionInput (Display *dpy, GetReq (XFixesSelectSelectionInput, req); req->reqType = info->codes->major_opcode; req->xfixesReqType = X_XFixesSelectSelectionInput; - req->window = win; - req->selection = selection; - req->eventMask = eventMask; + req->window = (CARD32) win; + req->selection = (CARD32) selection; + req->eventMask = (CARD32) eventMask; UnlockDisplay (dpy); SyncHandle (); } |