summaryrefslogtreecommitdiffhomepage
path: root/Kernel
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel')
-rw-r--r--Kernel/KernelKit/DebugOutput.hpp4
-rw-r--r--Kernel/KernelKit/HError.hpp1
-rw-r--r--Kernel/Sources/FS/NewFS.cxx2
3 files changed, 3 insertions, 4 deletions
diff --git a/Kernel/KernelKit/DebugOutput.hpp b/Kernel/KernelKit/DebugOutput.hpp
index 05865661..a3c01341 100644
--- a/Kernel/KernelKit/DebugOutput.hpp
+++ b/Kernel/KernelKit/DebugOutput.hpp
@@ -42,9 +42,7 @@ namespace NewOS
{
}
- virtual ~TerminalDevice()
- {
- }
+ virtual ~TerminalDevice() = default;
TerminalDevice& Number(const Long Data) noexcept
{
diff --git a/Kernel/KernelKit/HError.hpp b/Kernel/KernelKit/HError.hpp
index 528c3542..e893f938 100644
--- a/Kernel/KernelKit/HError.hpp
+++ b/Kernel/KernelKit/HError.hpp
@@ -47,6 +47,7 @@ namespace NewOS
inline constexpr HError kErrorAsync = 57;
inline constexpr HError kErrorNonBlocking = 58;
inline constexpr HError kErrorIPC = 59;
+ inline constexpr HError kErrorSign = 60;
inline constexpr HError kErrorUnimplemented = 0;
Void err_bug_check_raise(void) noexcept;
diff --git a/Kernel/Sources/FS/NewFS.cxx b/Kernel/Sources/FS/NewFS.cxx
index 79121018..63aa598e 100644
--- a/Kernel/Sources/FS/NewFS.cxx
+++ b/Kernel/Sources/FS/NewFS.cxx
@@ -520,7 +520,7 @@ bool NewFSParser::Format(_Input _Output DriveTrait* drive)
return true;
}
- kcout << "newoskrnl: PartitionBlock already exists.\r";
+ kcout << "newoskrnl: partition block already exists.\r";
/// return success as well, do not ignore that partition.
return true;