summaryrefslogtreecommitdiff
path: root/ldso/ldso/i386
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-06-03 00:00:08 +0000
committerMike Frysinger <vapier@gentoo.org>2005-06-03 00:00:08 +0000
commit70af8d4427700b6966cdc7b259ef1120b24852b2 (patch)
treeb204e4bd72c79299411a92653eb35fd307aa8e5d /ldso/ldso/i386
parent00b6ddf079f1207501a822d134eacc0cb0083fea (diff)
tweak whitespace to minimize diffs between i386/m68k
Diffstat (limited to 'ldso/ldso/i386')
-rw-r--r--ldso/ldso/i386/elfinterp.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/ldso/ldso/i386/elfinterp.c b/ldso/ldso/i386/elfinterp.c
index 334b72e20..6ec30325b 100644
--- a/ldso/ldso/i386/elfinterp.c
+++ b/ldso/ldso/i386/elfinterp.c
@@ -126,7 +126,6 @@ _dl_linux_resolver(struct elf_resolve *tpnt, int reloc_entry)
char *symname;
rel_addr = (char *)tpnt->dynamic_info[DT_JMPREL];
-
this_reloc = (ELF_RELOC *)(intptr_t)(rel_addr + reloc_entry);
reloc_type = ELF32_R_TYPE(this_reloc->r_info);
symtab_index = ELF32_R_SYM(this_reloc->r_info);
@@ -137,7 +136,7 @@ _dl_linux_resolver(struct elf_resolve *tpnt, int reloc_entry)
if (unlikely(reloc_type != R_386_JMP_SLOT)) {
_dl_dprintf(2, "%s: Incorrect relocation type in jump relocations\n",
- _dl_progname);
+ _dl_progname);
_dl_exit(1);
}
@@ -159,8 +158,8 @@ _dl_linux_resolver(struct elf_resolve *tpnt, int reloc_entry)
_dl_dprintf(_dl_debug_file, "\nresolve function: %s", symname);
if (_dl_debug_detail)
_dl_dprintf(_dl_debug_file,
- "\n\tpatched: %x ==> %x @ %x",
- *got_addr, new_addr, got_addr);
+ "\n\tpatched: %x ==> %x @ %x",
+ *got_addr, new_addr, got_addr);
}
}
if (!_dl_debug_nofixups) {