diff mbox

[03/13] gdbstub: fix coding style nit

Message ID 20090930174347.GD1399@redhat.com
State Superseded
Headers show

Commit Message

Michael S. Tsirkin Sept. 30, 2009, 5:43 p.m. UTC
Put space between = and * when dereferencing a pointer,
to avoid confusion with old-style "*="

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 gdbstub.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff mbox

Patch

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) {