diff options
author | runge <runge> | 2006-12-28 17:57:10 +0000 |
---|---|---|
committer | runge <runge> | 2006-12-28 17:57:10 +0000 |
commit | f9baaf1ee49e7889808b1f058a5f348a9cd5f027 (patch) | |
tree | 67b130f468967c942662f620950e188672d84e60 /x11vnc/xevents.c | |
parent | 99a557d673ac4444532ac7025cb479a229ea7fb3 (diff) | |
download | libtdevnc-f9baaf1ee49e7889808b1f058a5f348a9cd5f027.tar.gz libtdevnc-f9baaf1ee49e7889808b1f058a5f348a9cd5f027.zip |
more compiler warnings cleanup.
Diffstat (limited to 'x11vnc/xevents.c')
-rw-r--r-- | x11vnc/xevents.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/x11vnc/xevents.c b/x11vnc/xevents.c index ad95049..50c96bf 100644 --- a/x11vnc/xevents.c +++ b/x11vnc/xevents.c @@ -1145,7 +1145,8 @@ void xcut_receive(char *text, int len, rfbClientPtr cl) { #ifdef MACOSX if (macosx_console) { - return macosx_set_sel(text, len); + macosx_set_sel(text, len); + return; } #endif |