From 9d7084c6f528bb08b94fe59485f2341fe17d3427 Mon Sep 17 00:00:00 2001 From: Daniele Lacamera Date: Tue, 8 Apr 2025 08:46:31 +0200 Subject: [PATCH] fixed misleading comment Spotted by copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/elf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/elf.c b/src/elf.c index 2bbd90eb..d2709829 100644 --- a/src/elf.c +++ b/src/elf.c @@ -232,7 +232,7 @@ int elf_store_image_scattered(const unsigned char *hdr, unsigned long *entry_out hal_flash_lock(); } } - } else { /* 32 bit ELF */ + } else { /* 64 bit ELF */ const elf64_header *eh; const elf64_program_header *ph; wolfBoot_printf("ELF image is 64 bit\n");