From: Gerd Hoffmann Date: Mon, 27 Apr 2009 14:39:53 +0000 (+0200) Subject: vnc: kill leftover debug statement. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8563d5b31d1b1b43f3304ba59535b6b878c15a2d;p=qemu.git vnc: kill leftover debug statement. Signed-off-by: Gerd Hoffmann Signed-off-by: Anthony Liguori --- diff --git a/vnc.c b/vnc.c index b5a186d313..b11e22ba52 100644 --- a/vnc.c +++ b/vnc.c @@ -683,7 +683,7 @@ static int find_and_clear_dirty_height(struct VncSurface *s, { int h; - for (h = 1; h < (s->ds->height - y) && h < 1; h++) { + for (h = 1; h < (s->ds->height - y); h++) { int tmp_x; if (!vnc_get_bit(s->dirty[y + h], last_x)) break;