diff options
author | dscho <dscho> | 2005-05-15 13:57:51 +0000 |
---|---|---|
committer | dscho <dscho> | 2005-05-15 13:57:51 +0000 |
commit | 8bee4eb990273c3654431467ba6618eb916f030a (patch) | |
tree | f3077e1cb12a4cb778047814583fc0b2f26bb7b2 /libvncserver/zrle.c | |
parent | be5b1296e4aa4d8a51cd709853408ec0cd7b768b (diff) | |
download | libtdevnc-8bee4eb990273c3654431467ba6618eb916f030a.tar.gz libtdevnc-8bee4eb990273c3654431467ba6618eb916f030a.zip |
ANSIfy, fix some warnings from Linus' sparse
Diffstat (limited to 'libvncserver/zrle.c')
-rw-r--r-- | libvncserver/zrle.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libvncserver/zrle.c b/libvncserver/zrle.c index 4990fc2..da9e67b 100644 --- a/libvncserver/zrle.c +++ b/libvncserver/zrle.c @@ -25,6 +25,7 @@ */ #include "rfb/rfb.h" +#include "private.h" #include "zrleoutstream.h" @@ -174,7 +175,7 @@ rfbBool rfbSendRectEncodingZRLE(rfbClientPtr cl, int x, int y, int w, int h) } -void FreeZrleData(rfbClientPtr cl) +void rfbFreeZrleData(rfbClientPtr cl) { if (cl->zrleData) zrleOutStreamFree(cl->zrleData); |