diff options
| author | Amlal El Mahrouss <113760121+Amlal-ElMahrouss@users.noreply.github.com> | 2024-10-31 09:04:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-31 09:04:03 +0100 |
| commit | 83faed9caccdd47d3b443c2f563a9a0b3b0ca1e4 (patch) | |
| tree | 5e1bbc311e82682f9862b3e7a6de9a7daf49756d /dev/ZBAKit/src | |
| parent | 3d22ccdda8e782177a4fca684c07e8e6267d01c5 (diff) | |
IMP: Implement flags on the MicroKernel's Heap manager.
IMP: Don't return negative error codes.
Diffstat (limited to 'dev/ZBAKit/src')
| -rw-r--r-- | dev/ZBAKit/src/HEL/AMD64/BootMain.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/ZBAKit/src/HEL/AMD64/BootMain.cc b/dev/ZBAKit/src/HEL/AMD64/BootMain.cc index f7ed885b..98db6587 100644 --- a/dev/ZBAKit/src/HEL/AMD64/BootMain.cc +++ b/dev/ZBAKit/src/HEL/AMD64/BootMain.cc @@ -96,7 +96,7 @@ EFI_EXTERN_C EFI_API Int32 Main(EfiHandlePtr ImageHandle, #ifdef __ZKA_USE_FB__ if (!boot_init_fb()) - return -1; ///! Init the GOP. + return 1; ///! Init the GOP. for (SizeT index_vt = 0; index_vt < SystemTable->NumberOfTableEntries; ++index_vt) |
