diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-02-08 20:51:36 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-02-08 20:51:36 +0100 |
| commit | 2b69661a0b8cecb1f80c6376e866862553105f4a (patch) | |
| tree | 1e73a7da00586334331911760a8a360fc27abeab /src/boot/modules | |
| parent | 1e3c3380df3f62173cc5599181cce131f28244de (diff) | |
feat: Add run option for KDevelop config.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/boot/modules')
| -rw-r--r-- | src/boot/modules/BootNet/BootNet.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot/modules/BootNet/BootNet.cc b/src/boot/modules/BootNet/BootNet.cc index ced25d74..34b8282b 100644 --- a/src/boot/modules/BootNet/BootNet.cc +++ b/src/boot/modules/BootNet/BootNet.cc @@ -87,8 +87,8 @@ STATIC Void bootnet_read_ip_packet(BOOTNET_INTERNET_HEADER inet, auto len = inet.Length; /// And receive the handshake packet. - if (kEfiProtocol->Receive(kEfiProtocol, &size_inet, (UInt32*)&len, (VoidPtr) &inet, nullptr, nullptr, - nullptr) == kEfiOk) { + if (kEfiProtocol->Receive(kEfiProtocol, &size_inet, (UInt32*) &len, (VoidPtr) &inet, nullptr, + nullptr, nullptr) == kEfiOk) { BOOTNET_INTERNET_HEADER* out = nullptr; BS->AllocatePool(EfiLoaderData, sizeof(BOOTNET_INTERNET_HEADER) + inet.Length, (VoidPtr*) &out); |
