From 422491c98ad260075ac5f819527906f4369550ef Mon Sep 17 00:00:00 2001 From: steven_carr Date: Tue, 2 May 2006 20:47:10 +0000 Subject: signed vs unsigned warnings eliminated (gcc 4.0.1) --- libvncclient/hextile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libvncclient/hextile.c') diff --git a/libvncclient/hextile.c b/libvncclient/hextile.c index 6f0d70b..8698445 100644 --- a/libvncclient/hextile.c +++ b/libvncclient/hextile.c @@ -55,7 +55,7 @@ HandleHextileBPP (rfbClient* client, int rx, int ry, int rw, int rh) if (!ReadFromRFBServer(client, client->buffer, w * h * (BPP / 8))) return FALSE; - CopyRectangle(client, client->buffer, x, y, w, h); + CopyRectangle(client, (uint8_t *)client->buffer, x, y, w, h); continue; } -- cgit v1.2.1