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 | a5b09f5d14cdcd2d3ecf4cc0642325e061dae420 (patch) | |
tree | 17d763b2898fa8a07759ab49d1647158f2641397 /gdbstub.c | |
parent | d64186ac1eab9e0d98427745b072d51d0ebd4032 (diff) | |
download | qemu-a5b09f5d14cdcd2d3ecf4cc0642325e061dae420.tar.gz qemu-a5b09f5d14cdcd2d3ecf4cc0642325e061dae420.tar.bz2 qemu-a5b09f5d14cdcd2d3ecf4cc0642325e061dae420.zip |
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) { |