summaryrefslogtreecommitdiffhomepage
path: root/dev
diff options
context:
space:
mode:
authorAmlal El Mahrouss <zka-holder@mahrouss-logic.com>2024-10-28 10:39:25 +0000
committerAmlal El Mahrouss <zka-holder@mahrouss-logic.com>2024-10-28 10:39:25 +0000
commit6be176de2e92300227cfa826063a5f69e10626a8 (patch)
treebf1d62c0a20e16a224aaed3bda574c9ca04a7d5b /dev
parente0024d9ea688ee91a77abc0e28c5ea24b13ca67d (diff)
FIX: CODEOWNERS and String, Utils C++ sources.
Diffstat (limited to 'dev')
-rw-r--r--dev/ZKAKit/KernelKit/DebugOutput.h2
-rw-r--r--dev/ZKAKit/src/String.cc6
-rw-r--r--dev/ZKAKit/src/Utils.cc1
3 files changed, 5 insertions, 4 deletions
diff --git a/dev/ZKAKit/KernelKit/DebugOutput.h b/dev/ZKAKit/KernelKit/DebugOutput.h
index e7e466e3..f6260908 100644
--- a/dev/ZKAKit/KernelKit/DebugOutput.h
+++ b/dev/ZKAKit/KernelKit/DebugOutput.h
@@ -15,7 +15,7 @@
#define kDebugUnboundPort 0x0FEED
-#define kDebugMag0 'N'
+#define kDebugMag0 'Z'
#define kDebugMag1 'D'
#define kDebugMag2 'B'
#define kDebugMag3 'G'
diff --git a/dev/ZKAKit/src/String.cc b/dev/ZKAKit/src/String.cc
index 824e7b91..9ff7e9a0 100644
--- a/dev/ZKAKit/src/String.cc
+++ b/dev/ZKAKit/src/String.cc
@@ -6,7 +6,9 @@
#include <NewKit/String.h>
#include <NewKit/Utils.h>
-#include <KernelKit/DebugOutput.h>
+
+/// @file String.cc
+/// @brief String manipulation file.
namespace Kernel
{
@@ -97,7 +99,7 @@ namespace Kernel
if (!fmt)
return ("?");
- const Char* boolean_expr = i ? "True" : "False";
+ const Char* boolean_expr = i ? "YES" : "NO";
char* ret = (char*)cAlloca((sizeof(char) * i) ? 4 : 5 + rt_string_len(fmt));
if (!ret)
diff --git a/dev/ZKAKit/src/Utils.cc b/dev/ZKAKit/src/Utils.cc
index 53f98391..34a48b6d 100644
--- a/dev/ZKAKit/src/Utils.cc
+++ b/dev/ZKAKit/src/Utils.cc
@@ -5,7 +5,6 @@
------------------------------------------- */
#include <NewKit/Utils.h>
-#include <KernelKit/DebugOutput.h>
namespace Kernel
{