mirror of https://github.com/xemu-project/xemu.git
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>
This commit is contained in:
parent
6ece4df63b
commit
8f4bee23eb
|
@ -1284,7 +1284,7 @@ static int cpu_gdb_read_register(CPUState *env, uint8_t *mem_buf, int n)
|
||||||
else if (n<63) {
|
else if (n<63) {
|
||||||
uint64_t val;
|
uint64_t val;
|
||||||
|
|
||||||
val=*((uint64_t *)&env->fir[n-32]);
|
val = *((uint64_t *)&env->fir[n-32]);
|
||||||
GET_REGL(val);
|
GET_REGL(val);
|
||||||
}
|
}
|
||||||
else if (n==63) {
|
else if (n==63) {
|
||||||
|
|
Loading…
Reference in New Issue