From 218829db2303e3d61f901f1d12fd4f7cd03644e1 Mon Sep 17 00:00:00 2001 From: David Hildenbrand Date: Fri, 29 Aug 2014 15:52:17 +0200 Subject: [PATCH] s390x/gdb: coding style fixes This patch cleanes up two coding style issues (missing whitespaces). Signed-off-by: David Hildenbrand Acked-by: Cornelia Huck Acked-by: Christian Borntraeger Signed-off-by: Jens Freimann Signed-off-by: Christian Borntraeger --- target-s390x/gdbstub.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target-s390x/gdbstub.c b/target-s390x/gdbstub.c index cda80530e4..8945f0271d 100644 --- a/target-s390x/gdbstub.c +++ b/target-s390x/gdbstub.c @@ -41,7 +41,7 @@ int s390_cpu_gdb_read_register(CPUState *cs, uint8_t *mem_buf, int n) case S390_PSWA_REGNUM: return gdb_get_regl(mem_buf, env->psw.addr); case S390_R0_REGNUM ... S390_R15_REGNUM: - return gdb_get_regl(mem_buf, env->regs[n-S390_R0_REGNUM]); + return gdb_get_regl(mem_buf, env->regs[n - S390_R0_REGNUM]); } return 0; } @@ -63,7 +63,7 @@ int s390_cpu_gdb_write_register(CPUState *cs, uint8_t *mem_buf, int n) env->psw.addr = tmpl; break; case S390_R0_REGNUM ... S390_R15_REGNUM: - env->regs[n-S390_R0_REGNUM] = tmpl; + env->regs[n - S390_R0_REGNUM] = tmpl; break; default: return 0;