Commit 4d7ecfb8 authored by dscho's avatar dscho

compile warning fix

parent 7b90c447
...@@ -323,7 +323,7 @@ refreshCallback(CGRectCount count, const CGRect *rectArray, void *ignore) ...@@ -323,7 +323,7 @@ refreshCallback(CGRectCount count, const CGRect *rectArray, void *ignore)
rfbClientPtr cl; rfbClientPtr cl;
for(cl=rfbScreen->rfbClientHead;cl;cl=cl->next) for(cl=rfbScreen->rfbClientHead;cl;cl=cl->next)
if(!strcmp(message+1,cl->host)) { if(!strcmp(message+1,cl->host)) {
cl->clientData=(cl->clientData==0)?-1:0; cl->clientData=(void*)((cl->clientData==0)?-1:0);
break; break;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment