Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tests/subsys/llext/src/test_llext.c
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,8 @@ ZTEST(llext, test_find_section)
res = llext_get_section_header(loader, ext, ".data", &shdr);
zassert_ok(res, "get_section_header() should succeed");
zassert_equal(shdr.sh_offset, section_ofs,
"different section offset %zd from get_section_header", shdr.sh_offset);
"different section offset %llu from get_section_header",
(uint64_t)shdr.sh_offset);

uintptr_t symbol_ptr = (uintptr_t)llext_find_sym(&ext->exp_tab, "number");
uintptr_t section_ptr = (uintptr_t)find_section_ext + section_ofs;
Expand Down