Use shorter and more readable variable names
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2022-11-07 20:06:19 +01:00
parent 9aa6d6913a
commit 3c6136811b
2 changed files with 30 additions and 30 deletions

View File

@@ -16,7 +16,7 @@ EFI_HANDLE EfiImageHandle;
PEFI_SYSTEM_TABLE EfiSystemTable;
/* EFI XT Loader Protocol */
PXT_BOOT_LOADER_PROTOCOL EfiXtLdrProtocol;
PXT_BOOT_LOADER_PROTOCOL XtLdrProtocol;
/**
* This routine is the entry point of the XT EFI boot loader module.
@@ -42,7 +42,7 @@ BlXtLdrModuleMain(EFI_HANDLE ImageHandle,
EfiSystemTable = SystemTable;
/* Open the XTLDR protocol */
Status = BlGetXtLoaderProtocol(&EfiXtLdrProtocol);
Status = BlGetXtLoaderProtocol(&XtLdrProtocol);
if(Status != STATUS_EFI_SUCCESS)
{
/* Failed to open loader protocol */