From patchwork Thu Apr 1 21:46:20 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adam Lackorzynski X-Patchwork-Id: 49247 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id F02EEB7C33 for ; Fri, 2 Apr 2010 08:48:15 +1100 (EST) Received: from localhost ([127.0.0.1]:53746 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NxSFJ-0007J9-4v for incoming@patchwork.ozlabs.org; Thu, 01 Apr 2010 17:48:13 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NxSDZ-0005Ni-Rd for qemu-devel@nongnu.org; Thu, 01 Apr 2010 17:46:25 -0400 Received: from [140.186.70.92] (port=38122 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NxSDY-0005Kg-Iu for qemu-devel@nongnu.org; Thu, 01 Apr 2010 17:46:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NxSDX-0002kq-Bx for qemu-devel@nongnu.org; Thu, 01 Apr 2010 17:46:24 -0400 Received: from os.inf.tu-dresden.de ([141.76.48.99]:44490) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NxSDX-0002km-5l for qemu-devel@nongnu.org; Thu, 01 Apr 2010 17:46:23 -0400 Received: from erwin.inf.tu-dresden.de ([141.76.48.80] helo=os.inf.tu-dresden.de) by os.inf.tu-dresden.de with esmtps (TLSv1:AES128-SHA:128) (Exim 4.71) id 1NxSDW-0003yx-9a for qemu-devel@nongnu.org; Thu, 01 Apr 2010 23:46:22 +0200 Date: Thu, 1 Apr 2010 23:46:20 +0200 From: Adam Lackorzynski To: qemu-devel@nongnu.org Message-ID: <20100401214620.GC23153@os.inf.tu-dresden.de> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) Subject: [Qemu-devel] [PATCH] target-i386: Fix variable in (disabled) debugging code X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Adam Lackorzynski --- target-i386/op_helper.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/target-i386/op_helper.c b/target-i386/op_helper.c index 22259df..dcbdfe7 100644 --- a/target-i386/op_helper.c +++ b/target-i386/op_helper.c @@ -1231,7 +1231,7 @@ void do_interrupt(int intno, int is_int, int error_code, #if 0 { int i; - uint8_t *ptr; + target_ulong ptr; qemu_log(" code="); ptr = env->segs[R_CS].base + env->eip; for(i = 0; i < 16; i++) {