From 4e7ea02ed492a1fc0b167392361673244f957cce Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 3 Nov 2024 19:58:43 +0100 Subject: IMP: Refactor btb rules of SysChk, NetBoot and MakeFramework/MakeApp. IMP: Rename tools directory to apps. Signed-off-by: Amlal El Mahrouss --- dev/ZBAKit/Modules/SysChk/Module.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dev/ZBAKit/Modules/SysChk/Module.cc') diff --git a/dev/ZBAKit/Modules/SysChk/Module.cc b/dev/ZBAKit/Modules/SysChk/Module.cc index 2b82b2f1..c8a01050 100644 --- a/dev/ZBAKit/Modules/SysChk/Module.cc +++ b/dev/ZBAKit/Modules/SysChk/Module.cc @@ -11,12 +11,12 @@ EXTERN_C Int32 ModuleMain(Kernel::HEL::HANDOVER_INFO_HEADER* Handover) { - EfiSystemTable* cST = (EfiSystemTable*)Handover->f_FirmwareCustomTables[1]; + EfiSystemTable* system_table = (EfiSystemTable*)Handover->f_FirmwareCustomTables[1]; - cST->ConOut->ClearScreen(cST->ConOut); + system_table->ConOut->ClearScreen(system_table->ConOut); - cST->ConOut->OutputString(cST->ConOut, L"SYSCHK: CHECKING FOR VALID NEFS OR HPFS PARTITIONS...\r\n"); - cST->ConOut->OutputString(cST->ConOut, L"SYSCHK: GOOD TO GO!\r\n"); + system_table->ConOut->OutputString(system_table->ConOut, L"SYSCHK: CHECKING FOR VALID NEFS OR HPFS PARTITIONS...\r\n"); + system_table->ConOut->OutputString(system_table->ConOut, L"SYSCHK: GOOD TO GO!\r\n"); return kEfiOk; } -- cgit v1.2.3