This corrects bad formatting in the newly introduced function
s390_get_wordsize.
gdb/gdbserver/ChangeLog:
* linux-s390-low.c (s390_get_wordsize): Correct brace style.
+2018-03-22 Andreas Arnez <arnez@linux.vnet.ibm.com>
+
+ * linux-s390-low.c (s390_get_wordsize): Correct brace style.
+
2018-03-21 Andreas Arnez <arnez@linux.vnet.ibm.com>
* linux-s390-ipa.c (get_ipa_tdesc): Add handling for
PTRACE_XFER_TYPE pswm = ptrace (PTRACE_PEEKUSER, pid,
(PTRACE_TYPE_ARG3) 0,
(PTRACE_TYPE_ARG4) 0);
- if (errno != 0) {
- warning (_("Couldn't determine word size, assuming 64-bit.\n"));
- return 8;
- }
+ if (errno != 0)
+ {
+ warning (_("Couldn't determine word size, assuming 64-bit.\n"));
+ return 8;
+ }
/* Derive word size from extended addressing mode (PSW bit 31). */
return pswm & (1L << 32) ? 8 : 4;
}