Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/xrdp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/vnc
diff options
context:
space:
mode:
authorPavel Roskin <plroskin@gmail.com>2016-06-22 02:30:19 +0300
committerPavel Roskin <plroskin@gmail.com>2016-07-08 07:29:51 +0300
commitd1efb0d5baa661367b0fe74130457cb932a66e3b (patch)
tree0627bc5debad713d40cefc7ad16dc8afa750bc7f /vnc
parent5829323ad88f8120730968cfe165e590a7fb2d59 (diff)
Fix signed to unsigned comparisons reported by g++ 6.1.0
Diffstat (limited to 'vnc')
-rw-r--r--vnc/vnc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vnc/vnc.c b/vnc/vnc.c
index a72c8dd1..99245b53 100644
--- a/vnc/vnc.c
+++ b/vnc/vnc.c
@@ -587,7 +587,7 @@ lib_framebuffer_update(struct vnc *v)
int cy;
int srcx;
int srcy;
- int encoding;
+ unsigned int encoding;
int Bpp;
int pixel;
int r;