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:
Seonghyun Park 2021-07-29 09:01:20 +08:00 committed by mergify[bot]
parent 610bcc69ed
commit 3445058aea
1 changed files with 1 additions and 1 deletions

View File

@ -509,7 +509,7 @@ GetUpdateFileSystem (
DevicePath = DuplicateDevicePath (MappedDevicePath);
Status = GetEfiSysPartitionFromDevPath (DevicePath, &FullPath, Fs);
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;
}
Print (L"Warning: Cannot find Boot Option on '%s'!\n", Map);