From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=37951 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OEHme-0000nT-Lb for qemu-devel@nongnu.org; Tue, 18 May 2010 04:06:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OEHDS-0007xN-FI for qemu-devel@nongnu.org; Tue, 18 May 2010 03:30:55 -0400 Received: from iksaif.net ([88.191.73.63]:38557) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OEHDM-0007vP-8y for qemu-devel@nongnu.org; Tue, 18 May 2010 03:27:49 -0400 From: Corentin Chary Date: Tue, 18 May 2010 09:31:13 +0200 Message-Id: <1274167881-6966-3-git-send-email-corentincj@iksaif.net> In-Reply-To: <1274167881-6966-1-git-send-email-corentincj@iksaif.net> References: <1274167881-6966-1-git-send-email-corentincj@iksaif.net> Subject: [Qemu-devel] [PATCH 02/10] vnc: really call zlib if we want zlib List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Corentin Chary , Anthony Liguori , Alexander Graf , Adam Litke Signed-off-by: Corentin Chary --- vnc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/vnc.c b/vnc.c index a91c3a3..d0c0d00 100644 --- a/vnc.c +++ b/vnc.c @@ -655,7 +655,7 @@ static void send_framebuffer_update(VncState *vs, int x, int y, int w, int h) { switch(vs->vnc_encoding) { case VNC_ENCODING_ZLIB: - vnc_hextile_send_framebuffer_update(vs, x, y, w, h); + vnc_zlib_send_framebuffer_update(vs, x, y, w, h); break; case VNC_ENCODING_HEXTILE: vnc_framebuffer_update(vs, x, y, w, h, VNC_ENCODING_HEXTILE); -- 1.7.0.2