diff options
author | George Kiagiadakis <kiagiadakis.george@gmail.com> | 2010-11-14 16:13:43 +0000 |
---|---|---|
committer | Christian Beier <dontmind@freeshell.org> | 2011-06-01 13:04:50 +0200 |
commit | ddd9b5ac7bd12a778452b3aefbf9502e7a0a9779 (patch) | |
tree | 14ed050b8c9c85956996799ee35f14cd6cbd9cce /rfb | |
parent | 9f8d8d4ef38951767aa428796df127ff80de9b6e (diff) | |
download | libtdevnc-ddd9b5ac7bd12a778452b3aefbf9502e7a0a9779.tar.gz libtdevnc-ddd9b5ac7bd12a778452b3aefbf9502e7a0a9779.zip |
Fix rfbProcessNewConnection to return some value instead of void.
BUG: 256891
Signed-off-by: Christian Beier <dontmind@freeshell.org>
Diffstat (limited to 'rfb')
-rw-r--r-- | rfb/rfb.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1007,7 +1007,7 @@ extern rfbBool rfbSendTextChatMessage(rfbClientPtr cl, uint32_t length, char *bu * Additions for Qt event loop integration * Original idea taken from vino. */ -void rfbProcessNewConnection(rfbScreenInfoPtr rfbScreen); +rfbBool rfbProcessNewConnection(rfbScreenInfoPtr rfbScreen); rfbBool rfbUpdateClient(rfbClientPtr cl); |