From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NVh32-0008Nm-VG for qemu-devel@nongnu.org; Fri, 15 Jan 2010 02:56:49 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NVh2y-0008Mo-6M for qemu-devel@nongnu.org; Fri, 15 Jan 2010 02:56:48 -0500 Received: from [199.232.76.173] (port=39503 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NVh2x-0008Ml-LV for qemu-devel@nongnu.org; Fri, 15 Jan 2010 02:56:43 -0500 Received: from mx20.gnu.org ([199.232.41.8]:3114) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NVh2w-0005XI-Ph for qemu-devel@nongnu.org; Fri, 15 Jan 2010 02:56:42 -0500 Received: from mx1.redhat.com ([209.132.183.28]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NVh2w-0002Nw-1M for qemu-devel@nongnu.org; Fri, 15 Jan 2010 02:56:42 -0500 Received: from int-mx04.intmail.prod.int.phx2.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.17]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o0F7ueN4007718 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 15 Jan 2010 02:56:41 -0500 Received: from localhost.localdomain (vpn1-4-51.ams2.redhat.com [10.36.4.51]) by int-mx04.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o0F7ubQJ021725 for ; Fri, 15 Jan 2010 02:56:40 -0500 From: Paolo Bonzini Date: Fri, 15 Jan 2010 08:56:36 +0100 Message-Id: <1263542196-12842-4-git-send-email-pbonzini@redhat.com> In-Reply-To: <1263542196-12842-1-git-send-email-pbonzini@redhat.com> References: <1263542196-12842-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH 3/3] fix wrong indentation List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Signed-off-by: Paolo Bonzini --- cpu-exec.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/cpu-exec.c b/cpu-exec.c index a426db9..2f119a9 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -588,11 +588,9 @@ int cpu_exec(CPUState *env1) /* see if we can patch the calling TB. When the TB spans two pages, we cannot safely do a direct jump. */ - { - if (next_tb != 0 && tb->page_addr[1] == -1) { + if (next_tb != 0 && tb->page_addr[1] == -1) { tb_add_jump((TranslationBlock *)(next_tb & ~3), next_tb & 3, tb); } - } spin_unlock(&tb_lock); env->current_tb = tb; -- 1.6.5.2