diff options
author | Christian Beier <dontmind@freeshell.org> | 2016-11-24 18:17:13 +0100 |
---|---|---|
committer | Christian Beier <dontmind@freeshell.org> | 2016-11-24 18:17:13 +0100 |
commit | 78f26fe1ff2af486997d4ed25ecc6a0ebb9d0f6a (patch) | |
tree | 6d16e94a2d7fb472d23e473b74147ebb81dc587c | |
parent | bfee34615584982fe77b5eadd6cb0734de39b17b (diff) | |
download | libtdevnc-78f26fe1ff2af486997d4ed25ecc6a0ebb9d0f6a.tar.gz libtdevnc-78f26fe1ff2af486997d4ed25ecc6a0ebb9d0f6a.zip |
Fix building on OSX.
-rw-r--r-- | libvncclient/rfbproto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libvncclient/rfbproto.c b/libvncclient/rfbproto.c index 9edfbad..4ff1d3b 100644 --- a/libvncclient/rfbproto.c +++ b/libvncclient/rfbproto.c @@ -147,7 +147,7 @@ void* rfbClientGetClientData(rfbClient* client, void* tag) /* messages */ -static boolean CheckRect(rfbClient* client, int x, int y, int w, int h) { +static rfbBool CheckRect(rfbClient* client, int x, int y, int w, int h) { return x + w <= client->width && y + h <= client->height; } |