From: Pierre Ossman Date: Thu, 19 Sep 2013 09:11:10 +0000 (+0000) Subject: Do a better type cast that mirrors how we generate X-Git-Tag: v1.3.90~89 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5e711faec0c9f99e9cf3baf29a6c2584156e4f39;p=tigervnc.git Do a better type cast that mirrors how we generate opaqueId in the first place. Patch by Michal Srb. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5135 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- diff --git a/unix/xserver/hw/vnc/vncExtInit.cc b/unix/xserver/hw/vnc/vncExtInit.cc index 7148486d..a9fd0e9f 100644 --- a/unix/xserver/hw/vnc/vncExtInit.cc +++ b/unix/xserver/hw/vnc/vncExtInit.cc @@ -1070,7 +1070,7 @@ static int ProcVncExtApproveConnect(ClientPtr client) { REQUEST(xVncExtApproveConnectReq); REQUEST_SIZE_MATCH(xVncExtApproveConnectReq); - if (queryConnectId == (void*)stuff->opaqueId) { + if ((CARD32)(long)queryConnectId == stuff->opaqueId) { for (int scr = 0; scr < screenInfo.numScreens; scr++) { if (desktop[scr]) { desktop[scr]->approveConnection(queryConnectId, stuff->approve,