summaryrefslogtreecommitdiff
path: root/loader/memory_efi.c
diff options
context:
space:
mode:
Diffstat (limited to 'loader/memory_efi.c')
-rw-r--r--loader/memory_efi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/memory_efi.c b/loader/memory_efi.c
index b2d38ee..2fab6b7 100644
--- a/loader/memory_efi.c
+++ b/loader/memory_efi.c
@@ -18,6 +18,7 @@ struct memory_range system_allocate(size_t size)
if (EFI_ERROR(status))
{
+ Print(L"error allocating range: %r\r\n", status);
e_last_error = status;
buffer.type = UNUSABLE_MEMORY;
}
@@ -52,4 +53,3 @@ void efi_free(void *buffer)
e_last_error = status;
}
}
-