Unify naming convention
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 35s
Builds / ExectOS (i686) (push) Successful in 45s

This commit is contained in:
2024-01-25 22:25:23 +01:00
parent 9ab4328c9d
commit 73bd43d16d
5 changed files with 7 additions and 7 deletions

View File

@@ -150,11 +150,11 @@ XtLdrModuleMain(IN EFI_HANDLE ImageHandle,
}
/* Set routines available via ChainLoader boot protocol */
ChBootProtocol.BootSystem = ChBootSystem;
ChpBootProtocol.BootSystem = ChBootSystem;
/* Register XTOS boot protocol */
XtLdrProtocol->Boot.RegisterProtocol(L"CHAINLOADER", &Guid);
/* Install XTOS protocol */
return XtLdrProtocol->Protocol.Install(&ChBootProtocol, &Guid);
return XtLdrProtocol->Protocol.Install(&ChpBootProtocol, &Guid);
}