summaryrefslogtreecommitdiffhomepage
path: root/dev/LibCompiler/src/DynamicLinkerPEF.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-03-31 08:02:30 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-03-31 08:02:30 +0200
commit11680de96d8b9e7dd70bee28cfd6c438d6aa3a9c (patch)
tree4252b2aacc98e90ff4d274a795817cb60243e0f9 /dev/LibCompiler/src/DynamicLinkerPEF.cc
parent432e353dce0277c795445e60f90c8271ebd8fa2e (diff)
meta/repository: fix capitalization on my name 'El' instead of 'EL'.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/LibCompiler/src/DynamicLinkerPEF.cc')
-rw-r--r--dev/LibCompiler/src/DynamicLinkerPEF.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/LibCompiler/src/DynamicLinkerPEF.cc b/dev/LibCompiler/src/DynamicLinkerPEF.cc
index aed208a..03b8151 100644
--- a/dev/LibCompiler/src/DynamicLinkerPEF.cc
+++ b/dev/LibCompiler/src/DynamicLinkerPEF.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024-2025 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal El Mahrouss, all rights reserved
@file DynamicLinker64PEF.cc
@brief: C++ 64-Bit PEF Linker.
@@ -32,7 +32,7 @@
#include <LibCompiler/NFC/AE.h>
#include <cstdint>
-#define kLinkerVersionStr "NeOS 64-Bit Linker (Preferred Executable) %s, (c) Amlal EL Mahrouss 2024, all rights reserved.\n"
+#define kLinkerVersionStr "NeOS 64-Bit Linker (Preferred Executable) %s, (c) Amlal El Mahrouss 2024, all rights reserved.\n"
#define MemoryCopy(DST, SRC, SZ) memcpy(DST, SRC, SZ)
#define StringCompare(DST, SRC) strcmp(DST, SRC)
@@ -254,7 +254,7 @@ LIBCOMPILER_MODULE(DynamicLinker64PEF)
pef_container.Count = 0UL;
pef_container.Kind = is_executable ? LibCompiler::kPefKindExec : LibCompiler::kPefKindDylib;
pef_container.SubCpu = kSubArch;
- pef_container.Linker = kLinkerId; // Amlal EL Mahrouss Linker
+ pef_container.Linker = kLinkerId; // Amlal El Mahrouss Linker
pef_container.Abi = kAbi; // Multi-Processor UX ABI
pef_container.Magic[0] = kPefMagic[kFatBinaryEnable ? 2 : 0];
pef_container.Magic[1] = kPefMagic[1];