From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mt3FR-0005R8-2P for qemu-devel@nongnu.org; Wed, 30 Sep 2009 13:45:53 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mt3FM-0005N3-Fq for qemu-devel@nongnu.org; Wed, 30 Sep 2009 13:45:52 -0400 Received: from [199.232.76.173] (port=44801 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mt3FM-0005Mt-BH for qemu-devel@nongnu.org; Wed, 30 Sep 2009 13:45:48 -0400 Received: from mx20.gnu.org ([199.232.41.8]:49022) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Mt3FL-0006Q5-UA for qemu-devel@nongnu.org; Wed, 30 Sep 2009 13:45:48 -0400 Received: from mx1.redhat.com ([209.132.183.28]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mt3FL-0005PG-2g for qemu-devel@nongnu.org; Wed, 30 Sep 2009 13:45:47 -0400 Date: Wed, 30 Sep 2009 19:43:47 +0200 From: "Michael S. Tsirkin" Message-ID: <20090930174347.GD1399@redhat.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: [Qemu-devel] [PATCH 03/13] gdbstub: fix coding style nit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Blue Swirl Cc: qemu-devel@nongnu.org Put space between = and * when dereferencing a pointer, to avoid confusion with old-style "*=" Signed-off-by: Michael S. Tsirkin --- gdbstub.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/gdbstub.c b/gdbstub.c index 33d79eb..3c31fad 100644 --- a/gdbstub.c +++ b/gdbstub.c @@ -1284,7 +1284,7 @@ static int cpu_gdb_read_register(CPUState *env, uint8_t *mem_buf, int n) else if (n<63) { uint64_t val; - val=*((uint64_t *)&env->fir[n-32]); + val = *((uint64_t *)&env->fir[n-32]); GET_REGL(val); } else if (n==63) { -- 1.6.5.rc2