diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-07-02 22:00:35 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-07-02 22:00:49 +0200 |
| commit | 375d0210dcb2070a12d916523f4a1dafff28360c (patch) | |
| tree | d0c217f529b8069ea659778c2ee9ca20aeba33a4 /Kernel/HALKit/AMD64/HalDebugOutput.cxx | |
| parent | f1d3744829a661d1600c2f3bbdbdf679ee0bd0e1 (diff) | |
MHR-36: Change namespace name, got out of the codename stage.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Kernel/HALKit/AMD64/HalDebugOutput.cxx')
| -rw-r--r-- | Kernel/HALKit/AMD64/HalDebugOutput.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Kernel/HALKit/AMD64/HalDebugOutput.cxx b/Kernel/HALKit/AMD64/HalDebugOutput.cxx index 25c1546e..3dd70dc6 100644 --- a/Kernel/HALKit/AMD64/HalDebugOutput.cxx +++ b/Kernel/HALKit/AMD64/HalDebugOutput.cxx @@ -9,7 +9,7 @@ #include <KernelKit/Framebuffer.hpp> #include <NewKit/Utils.hpp> -namespace NewOS +namespace Kernel { enum CommStatus { @@ -137,9 +137,9 @@ namespace NewOS static TerminalDevice* out = nullptr; if (!out) - out = new TerminalDevice(NewOS::ke_io_write, NewOS::ke_io_read); + out = new TerminalDevice(Kernel::ke_io_write, Kernel::ke_io_read); return *out; } -} // namespace NewOS +} // namespace Kernel |
