boot/loader/elf: Minor fix for printf format type on x86_64

Change-Id: I619542fa13794bd359c589672d85138c8cf251fe
This commit is contained in:
Alexander von Gluck
2025-05-21 12:00:54 -05:00
parent 07a90ea93c
commit c8f38f4627
+1 -1
View File
@@ -313,7 +313,7 @@ ELFLoader<Class>::Load(int fd, preloaded_image* _image)
if (Class::AllocateRegion(&address, totalSize, if (Class::AllocateRegion(&address, totalSize,
B_READ_AREA | B_WRITE_AREA | B_EXECUTE_AREA, &mappedRegion) B_READ_AREA | B_WRITE_AREA | B_EXECUTE_AREA, &mappedRegion)
!= B_OK) { != B_OK) {
dprintf("%s: AllocateRegion failed for address 0x%" B_PRIx64 " (size %" B_PRIx64 ")\n", dprintf("%s: AllocateRegion failed for address 0x%" B_PRIx64 " (size %" B_PRIuSIZE ")\n",
__func__, (int64)address, totalSize); __func__, (int64)address, totalSize);
status = B_NO_MEMORY; status = B_NO_MEMORY;
goto error1; goto error1;