summaryrefslogtreecommitdiffhomepage
path: root/tooling
diff options
context:
space:
mode:
authorAmlal <amlal@nekernel.org>2025-05-01 08:50:50 +0200
committerAmlal <amlal@nekernel.org>2025-05-01 08:53:36 +0200
commit2ef7b73cff0d99d04e5091e98b3988532e2b1063 (patch)
treee3d0289661dcc90bb966ef338e18a53600abcd4b /tooling
parent72fa8a81498a53491950f92d9e96fbe6dd65cc04 (diff)
kernel: mmap the blob to VMAddress in PEFCodeMgr, alongside other fixes regarding memory leaks.
Signed-off-by: Amlal <amlal@nekernel.org>
Diffstat (limited to 'tooling')
-rw-r--r--tooling/mkfs.hefs.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tooling/mkfs.hefs.cc b/tooling/mkfs.hefs.cc
index 4d7225fe..f19f1571 100644
--- a/tooling/mkfs.hefs.cc
+++ b/tooling/mkfs.hefs.cc
@@ -96,7 +96,7 @@ int main(int argc, char** argv) {
bootNode.sectorSize = kSectorSize;
bootNode.startIND = start_ind;
bootNode.endIND = end_ind;
- bootNode.indCount = 0UL;
+ bootNode.indCount = 0UL;
bootNode.diskStatus = mkfs::hefs::kHeFSStatusUnlocked;
std::memcpy(bootNode.magic, kHeFSMagic, kHeFSMagicLen - 1);