summaryrefslogtreecommitdiffhomepage
path: root/dev
diff options
context:
space:
mode:
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
{