diff options
| author | Ada Christine <adachristine18@gmail.com> | 2021-05-06 14:10:42 +0000 |
|---|---|---|
| committer | Ada Christine <adachristine18@gmail.com> | 2021-05-06 14:10:42 +0000 |
| commit | af0a10fdce88d58ea3bef9c2994694cc96fe9d08 (patch) | |
| tree | 929b31763b0b85109ce13271d424c40027092baf /loader/memory_efi.c | |
| parent | 4fffc7eb44a6d85fdc5627a71cff4f392068f5e7 (diff) | |
moved paging code, slight modifications
Diffstat (limited to 'loader/memory_efi.c')
| -rw-r--r-- | loader/memory_efi.c | 2 |
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; } } - |
