diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2009-09-30 19:43:47 +0200 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-09-30 18:45:50 +0000 |
commit | 8f4bee23eb86f96f25ea2b5b1fe06b83995366e6 (patch) | |
tree | 17d763b2898fa8a07759ab49d1647158f2641397 /gdbstub.c | |
parent | 6ece4df63bd06089f0436160abb6fd14c4eef105 (diff) |
gdbstub: fix coding style nit
Put space between = and * when dereferencing a pointer,
to avoid confusion with old-style "*="
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'gdbstub.c')
-rw-r--r-- | gdbstub.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |