mirror of https://github.com/acidanthera/audk.git
ArmPlatformPkg/Bds: Fixed device path of the default error output device
Replaced 'ConErr' by 'ErrOut'. Signed-off-by: Olivier Martin <olivier.martin@arm.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13600 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
d0d0c1b370
commit
30d1bcd131
|
@ -181,7 +181,7 @@ InitializeConsole (
|
|||
ASSERT_EFI_ERROR (Status);
|
||||
Status = GetConsoleDevicePathFromVariable (L"ConIn", (CHAR16*)PcdGetPtr(PcdDefaultConInPaths), &ConInDevicePaths);
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
Status = GetConsoleDevicePathFromVariable (L"ConErr", (CHAR16*)PcdGetPtr(PcdDefaultConOutPaths), &ConErrDevicePaths);
|
||||
Status = GetConsoleDevicePathFromVariable (L"ErrOut", (CHAR16*)PcdGetPtr(PcdDefaultConOutPaths), &ConErrDevicePaths);
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
|
||||
// Initialize the Consoles
|
||||
|
|
Loading…
Reference in New Issue