summaryrefslogtreecommitdiffhomepage
path: root/dev
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-08-04 14:39:51 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-08-04 14:39:51 +0100
commit2a28b34b046904667fb5ccc50b367320095c08f5 (patch)
tree0611d1c6673598b2c1fffd0f1042667cd6b193c2 /dev
parentd728ff289123fff3443a897cca3fc6424634f536 (diff)
meta: PEFCodeMgr: fix code styling issues.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev')
-rw-r--r--dev/kernel/src/PEFCodeMgr.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/dev/kernel/src/PEFCodeMgr.cc b/dev/kernel/src/PEFCodeMgr.cc
index d61a3cab..84afdabd 100644
--- a/dev/kernel/src/PEFCodeMgr.cc
+++ b/dev/kernel/src/PEFCodeMgr.cc
@@ -16,7 +16,6 @@
#include <NeKit/KernelPanic.h>
#include <NeKit/OwnPtr.h>
#include <NeKit/Utils.h>
-#include "HALKit/AMD64/Paging.h"
/// @author Amlal El Mahrouss (amlal@nekernel.org)
/// @brief PEF backend for the Code Manager.
@@ -136,8 +135,8 @@ ErrorOr<VoidPtr> PEFLoader::FindSymbol(const Char* name, Int32 kind) {
}
default:
return ErrorOr<VoidPtr>{kErrorInvalidData};
- ; // prevent that from the kernel's mode perspective, let that happen if it
- // were a user process.
+ // prevent that from the kernel's mode perspective, let that happen if it
+ // were a user process.
}
Char* unconst_symbol = const_cast<Char*>(name);