Fix style(9).
Not a functional change. MFC after: 1 week
This commit is contained in:
parent
8ebae128be
commit
e8c479fddc
@ -109,9 +109,8 @@ do_copy_relocations(Obj_Entry *dstobj)
|
||||
}
|
||||
}
|
||||
if (srcobj == NULL) {
|
||||
_rtld_error(
|
||||
"Undefined symbol \"%s\" referenced from COPY relocation in %s",
|
||||
name, dstobj->path);
|
||||
_rtld_error("Undefined symbol \"%s\" referenced from "
|
||||
"COPY relocation in %s", name, dstobj->path);
|
||||
return (-1);
|
||||
}
|
||||
|
||||
@ -207,7 +206,8 @@ reloc_plt(Obj_Entry *obj)
|
||||
const Elf_Rela *relalim;
|
||||
const Elf_Rela *rela;
|
||||
|
||||
relalim = (const Elf_Rela *)((const char *)obj->pltrela + obj->pltrelasize);
|
||||
relalim = (const Elf_Rela *)((const char *)obj->pltrela +
|
||||
obj->pltrelasize);
|
||||
for (rela = obj->pltrela; rela < relalim; rela++) {
|
||||
Elf_Addr *where;
|
||||
|
||||
@ -245,7 +245,8 @@ reloc_jmpslots(Obj_Entry *obj, int flags, RtldLockState *lockstate)
|
||||
const Elf_Sym *def;
|
||||
struct tls_data *tlsdesc;
|
||||
|
||||
relalim = (const Elf_Rela *)((const char *)obj->pltrela + obj->pltrelasize);
|
||||
relalim = (const Elf_Rela *)((const char *)obj->pltrela +
|
||||
obj->pltrelasize);
|
||||
for (rela = obj->pltrela; rela < relalim; rela++) {
|
||||
Elf_Addr *where, target;
|
||||
|
||||
|
@ -57,7 +57,7 @@ END(.rtld_start)
|
||||
ENTRY(_rtld_bind_start)
|
||||
.cfi_startproc
|
||||
mov x17, sp
|
||||
|
||||
|
||||
/* Save frame pointer and SP */
|
||||
stp x29, x30, [sp, #-16]!
|
||||
mov x29, sp
|
||||
|
Loading…
x
Reference in New Issue
Block a user