summaryrefslogtreecommitdiffstats
path: root/libvncserver/cursor.c
diff options
context:
space:
mode:
authorrunge <runge>2006-02-20 19:19:30 +0000
committerrunge <runge>2006-02-20 19:19:30 +0000
commit603b5667b64aa5aaea0aa7e575fb4cb2c2b6d7c7 (patch)
tree582b98055d3f8edf42fff571a3443ff0dfaa1256 /libvncserver/cursor.c
parent4b8cc33e39e1d2f4eb459312659eff873a41e4db (diff)
downloadlibtdevnc-603b5667b64aa5aaea0aa7e575fb4cb2c2b6d7c7.tar.gz
libtdevnc-603b5667b64aa5aaea0aa7e575fb4cb2c2b6d7c7.zip
fix some non-gcc compiler warnings and signals in x11vnc
Diffstat (limited to 'libvncserver/cursor.c')
-rw-r--r--libvncserver/cursor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvncserver/cursor.c b/libvncserver/cursor.c
index eb976e2..d40fb76 100644
--- a/libvncserver/cursor.c
+++ b/libvncserver/cursor.c
@@ -341,7 +341,7 @@ char* rfbMakeMaskFromAlphaSource(int width,int height,unsigned char* alphaSource
}
}
free(error);
- return result;
+ return (char *) result;
}
void rfbFreeCursor(rfbCursorPtr cursor)