Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions MsGraphicsPkg/Library/SimpleUIToolKit/SimpleUIToolKit.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ InitializeUIToolKit (

// Determine if the GOP is available.
//
Status = gBS->LocateProtocol (
Status = gBS->HandleProtocol (
gST->ConsoleOutHandle,
&gEfiGraphicsOutputProtocolGuid,
NULL,
(VOID **)&mUITGop
);

Expand Down
4 changes: 2 additions & 2 deletions MsGraphicsPkg/SimpleWindowManagerDxe/WindowManager.c
Original file line number Diff line number Diff line change
Expand Up @@ -1507,9 +1507,9 @@ GopRegisteredCallback (

// Determine if the Graphics Output Protocol is available on the Console Out handle.
//
Status = gBS->LocateProtocol (
Status = gBS->HandleProtocol (
gST->ConsoleOutHandle,
&gEfiGraphicsOutputProtocolGuid,
NULL,
(VOID **)&mGop
);

Expand Down
Loading