diff options
author | runge <runge> | 2006-12-28 20:26:27 +0000 |
---|---|---|
committer | runge <runge> | 2006-12-28 20:26:27 +0000 |
commit | e4a397ed13a2c6eb9d2da7870165e7ecdc67f461 (patch) | |
tree | 2f868d105d3135e045fc9e5f6f79cc1d0e5cd9ae /x11vnc | |
parent | 5c9ba4bb035255956dd176b285df3a81bafa02e3 (diff) | |
download | libtdevnc-e4a397ed13a2c6eb9d2da7870165e7ecdc67f461.tar.gz libtdevnc-e4a397ed13a2c6eb9d2da7870165e7ecdc67f461.zip |
a couple more warnings...
Diffstat (limited to 'x11vnc')
-rw-r--r-- | x11vnc/README | 2 | ||||
-rw-r--r-- | x11vnc/userinput.c | 2 | ||||
-rw-r--r-- | x11vnc/win_utils.c | 6 |
3 files changed, 7 insertions, 3 deletions
diff --git a/x11vnc/README b/x11vnc/README index e6569a0..6ae1a57 100644 --- a/x11vnc/README +++ b/x11vnc/README @@ -1,5 +1,5 @@ -x11vnc README file Date: Thu Dec 28 14:49:09 EST 2006 +x11vnc README file Date: Thu Dec 28 15:22:02 EST 2006 The following information is taken from these URLs: diff --git a/x11vnc/userinput.c b/x11vnc/userinput.c index 00b9dcf..612c1dd 100644 --- a/x11vnc/userinput.c +++ b/x11vnc/userinput.c @@ -5460,7 +5460,7 @@ fprintf(stderr, "check_wireframe: 1\n"); #if defined(NO_NCACHE) || (NO_X11 && !defined(MACOSX)) int check_ncache(int a, int b) { if (!a || !b) {} - return; + return 0; } int lookup_win_index(Window win) { if (!win) {} diff --git a/x11vnc/win_utils.c b/x11vnc/win_utils.c index 9f70349..2e5449e 100644 --- a/x11vnc/win_utils.c +++ b/x11vnc/win_utils.c @@ -205,6 +205,10 @@ void snapshot_stack_list(int free_only, double allowed_age) { #endif #if NO_X11 && !defined(MACOSX) + num = rc = i = j = 0; + ui = 0; + r = w = None; + list = NULL; return; #else @@ -341,7 +345,7 @@ Window query_pointer(Window start) { RAWFB_RET(None) #if NO_X11 - if (!start) {} + if (!start) { rx = ry = 0; } return None; #else if (start == None) { |