diff options
| author | Ada Christine <adachristine18@gmail.com> | 2021-12-31 16:07:50 +0000 |
|---|---|---|
| committer | Ada Christine <adachristine18@gmail.com> | 2021-12-31 16:07:50 +0000 |
| commit | c30ce24944f71234cea42be9841f433cbc31f145 (patch) | |
| tree | 52d8fa9bb787f5ac553f05bcc7f33f083d33c298 | |
| parent | d763064d58cea0479badc237221be0c1203e5db9 (diff) | |
clean up main_efi.c
| -rw-r--r-- | loader/main_efi.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/loader/main_efi.c b/loader/main_efi.c index 37802cb..a6cd7b4 100644 --- a/loader/main_efi.c +++ b/loader/main_efi.c @@ -208,7 +208,11 @@ static EFI_STATUS read_image(struct efi_loader_image *image, UINTN offset, UINTN length) { - Print(L"reading %d bytes from image at 0x%8.0x %s\r\n", length, offset, image->path); + Print(L"reading %d bytes from image at 0x%8.0x %s\r\n", + length, + offset, + image->path); + EFI_STATUS status; ASSERT(buffer); |
