Print the correct size of loader.efi when failing to load it into memory.

Obtained from:	AsiaBSDCon
Sponsored by:	ABT Systems Ltd
This commit is contained in:
andrew 2016-03-12 06:50:16 +00:00
parent 96b33bc25d
commit 01c1595386

View File

@ -405,7 +405,7 @@ try_boot()
if ((status = bs->LoadImage(TRUE, image, devpath_last(dev->devpath),
loaderbuf, loadersize, &loaderhandle)) != EFI_SUCCESS) {
printf("Failed to load image provided by %s, size: %zu, (%lu)\n",
mod->name, bufsize, EFI_ERROR_CODE(status));
mod->name, loadersize, EFI_ERROR_CODE(status));
goto errout;
}