mirror of https://github.com/acidanthera/audk.git
MdeModulePkg/CapsuleApp: Fix typo in error message
Fix typo in error message in CapsuleApp. Signed-off-by: Seonghyun Park <shpark1@protonmail.com> Reviewed-by: Hao A Wu <hao.a.wu@intel.com>
This commit is contained in:
parent
610bcc69ed
commit
3445058aea
|
@ -509,7 +509,7 @@ GetUpdateFileSystem (
|
||||||
DevicePath = DuplicateDevicePath (MappedDevicePath);
|
DevicePath = DuplicateDevicePath (MappedDevicePath);
|
||||||
Status = GetEfiSysPartitionFromDevPath (DevicePath, &FullPath, Fs);
|
Status = GetEfiSysPartitionFromDevPath (DevicePath, &FullPath, Fs);
|
||||||
if (EFI_ERROR (Status)) {
|
if (EFI_ERROR (Status)) {
|
||||||
Print (L"Error: Cannot get EFI system partiion from '%s' - %r\n", Map, Status);
|
Print (L"Error: Cannot get EFI system partition from '%s' - %r\n", Map, Status);
|
||||||
return EFI_NOT_FOUND;
|
return EFI_NOT_FOUND;
|
||||||
}
|
}
|
||||||
Print (L"Warning: Cannot find Boot Option on '%s'!\n", Map);
|
Print (L"Warning: Cannot find Boot Option on '%s'!\n", Map);
|
||||||
|
|
Loading…
Reference in New Issue