Tidy some whitespace.

This commit is contained in:
John Baldwin 2018-01-18 00:23:11 +00:00
parent 65eefbe422
commit 449af04fc9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=328103

View File

@ -59,10 +59,10 @@ ef_reloc(struct elf_file *ef, const void *reldata, int reltype, Elf_Off relbase,
addend = rela->r_addend;
rtype = ELF_R_TYPE(rela->r_info);
if ((char *)where < (char *)dest || (char *)where >= (char *)dest + len)
if ((char *)where < (char *)dest || (char *)where >= (char *)dest + len)
return (0);
switch(rtype) {
switch (rtype) {
case R_PPC_RELATIVE: /* word32 B + A */
*where = relbase + addend;
break;