summaryrefslogtreecommitdiff
path: root/gdbstub.c
diff options
context:
space:
mode:
authorMichael S. Tsirkin <mst@redhat.com>2009-09-30 19:43:47 +0200
committerBlue Swirl <blauwirbel@gmail.com>2009-09-30 18:45:50 +0000
commita5b09f5d14cdcd2d3ecf4cc0642325e061dae420 (patch)
tree17d763b2898fa8a07759ab49d1647158f2641397 /gdbstub.c
parentd64186ac1eab9e0d98427745b072d51d0ebd4032 (diff)
downloadqemu-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdbstub.c b/gdbstub.c
index 33d79ebcb9..3c31fad491 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) {