qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 03/13] gdbstub: fix coding style nit


From: Michael S. Tsirkin
Subject: [Qemu-devel] [PATCH 03/13] gdbstub: fix coding style nit
Date: Wed, 30 Sep 2009 19:43:47 +0200
User-agent: Mutt/1.5.19 (2009-01-05)

Put space between = and * when dereferencing a pointer,
to avoid confusion with old-style "*="

Signed-off-by: Michael S. Tsirkin <address@hidden>
---
 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





reply via email to

[Prev in Thread] Current Thread [Next in Thread]