S390: Correct brace style in s390_get_wordsize

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.
This commit is contained in:
Andreas Arnez 2018-03-22 10:02:18 +01:00
parent 32546502f3
commit f69c5afb18
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,7 @@
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

View File

@ -507,10 +507,11 @@ s390_get_wordsize (int pid)
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;
}