From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LyS03-0001mo-MP for qemu-devel@nongnu.org; Mon, 27 Apr 2009 10:40:03 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LyRzy-0001jz-Rp for qemu-devel@nongnu.org; Mon, 27 Apr 2009 10:40:02 -0400 Received: from [199.232.76.173] (port=48304 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LyRzy-0001js-HK for qemu-devel@nongnu.org; Mon, 27 Apr 2009 10:39:58 -0400 Received: from mx2.redhat.com ([66.187.237.31]:60869) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LyRzx-00068G-T8 for qemu-devel@nongnu.org; Mon, 27 Apr 2009 10:39:58 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n3REdvDw021589 for ; Mon, 27 Apr 2009 10:39:57 -0400 From: Gerd Hoffmann Date: Mon, 27 Apr 2009 16:39:53 +0200 Message-Id: <1240843193-15967-3-git-send-email-kraxel@redhat.com> In-Reply-To: <1240843193-15967-1-git-send-email-kraxel@redhat.com> References: <1240843193-15967-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 3/3] vnc: kill leftover debug statement. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- vnc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/vnc.c b/vnc.c index 3a25e1d..8e8acc2 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; -- 1.6.2.2