This is an automated email from the ASF dual-hosted git repository.

acassis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git

commit 3cee81af6ddee76f17f2494b15a0982073cb79a2
Author: Neale Ferguson <ne...@sinenomine.net>
AuthorDate: Thu Jul 6 14:45:46 2023 +1000

    * libs/libc/machine/arm/armv7-m/arch_elf.c
      - Fix typo
---
 libs/libc/machine/arm/armv7-m/arch_elf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libs/libc/machine/arm/armv7-m/arch_elf.c 
b/libs/libc/machine/arm/armv7-m/arch_elf.c
index c622a4cfeb..c52d3769a1 100644
--- a/libs/libc/machine/arm/armv7-m/arch_elf.c
+++ b/libs/libc/machine/arm/armv7-m/arch_elf.c
@@ -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;

Reply via email to