* libs/libc/machine/arm/armv7-m/arch_elf.c

- Fix typo
This commit is contained in:
Neale Ferguson 2023-07-06 14:45:46 +10:00 committed by Alan Carvalho de Assis
parent fec789047a
commit 3cee81af6d

View File

@ -497,7 +497,7 @@ int up_relocate(const Elf32_Rel *rel, const Elf32_Sym *sym, uintptr_t addr)
case R_ARM_JUMP_SLOT :
{
binfo("Relocating: RELATIVE/JUMP_SLOT at %p value: %08lx with %08lx\n",
(void *)addr,*(unsigned log *) addr, (unsigned long) sym->st_value);
(void *)addr,*(unsigned long *) addr, (unsigned long) sym->st_value);
*(uint32_t *) addr = (uint32_t) sym->st_value;
}
break;