diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-22 08:48:37 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-22 08:48:37 +0200 |
| commit | 5d38a6302720eb1d2783c2067965ade316cc92de (patch) | |
| tree | 906b56ec92e9075181494e8a4012ebde72d22175 /dev/ZKA/KernelKit/DebugOutput.hxx | |
| parent | b95b1fc42d371b08aa82fea8e92aa04b2ef5631f (diff) | |
[REFACTOR] use Char instead of builtin char.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKA/KernelKit/DebugOutput.hxx')
| -rw-r--r-- | dev/ZKA/KernelKit/DebugOutput.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dev/ZKA/KernelKit/DebugOutput.hxx b/dev/ZKA/KernelKit/DebugOutput.hxx index 2205acfe..b8fd97dd 100644 --- a/dev/ZKA/KernelKit/DebugOutput.hxx +++ b/dev/ZKA/KernelKit/DebugOutput.hxx @@ -45,8 +45,8 @@ namespace Kernel virtual ~TerminalDevice() = default; /// @brief returns device name (terminal name) - /// @return string type (const char*) - virtual const char* Name() const override + /// @return string type (const Char*) + virtual const Char* Name() const override { return ("TerminalDevice"); } @@ -105,7 +105,7 @@ namespace Kernel if (y < 0) y = -y; - const char cNumbers[11] = "0123456789"; + const Char cNumbers[11] = "0123456789"; Char buf[2]; buf[0] = cNumbers[h]; @@ -133,7 +133,7 @@ namespace Kernel if (y < 0) y = -y; - const char cNumbers[17] = "0123456789ABCDEF"; + const Char cNumbers[17] = "0123456789ABCDEF"; Char buf[2]; buf[0] = cNumbers[h]; |
