*thwack*! all the world's not i386.

Pointy hat to:	des
This commit is contained in:
Dag-Erling Smørgrav 2006-03-29 12:29:01 +00:00
parent cf3dcc9f57
commit 4421d895a9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=157261

View File

@ -46,8 +46,10 @@ reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
const struct Struct_Obj_Entry *obj,
const struct Struct_Obj_Entry *refobj, const Elf_Rel *rel)
{
#ifdef dbg
dbg("reloc_jmpslot: *%p = %p", (void *)(where),
(void *)(target));
#endif
(*(Elf_Addr *)(where) = (Elf_Addr)(target));
return target;
}