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 | |
| parent | 6ece4df63bd06089f0436160abb6fd14c4eef105 (diff) | |
| download | focaccia-qemu-8f4bee23eb86f96f25ea2b5b1fe06b83995366e6.tar.gz focaccia-qemu-8f4bee23eb86f96f25ea2b5b1fe06b83995366e6.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>
| -rw-r--r-- | gdbstub.c | 2 |
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) { |