summaryrefslogtreecommitdiffhomepage
path: root/Kernel/HALKit/AXP/CoreSyscallHandlerDEC.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/HALKit/AXP/CoreSyscallHandlerDEC.cpp')
-rw-r--r--Kernel/HALKit/AXP/CoreSyscallHandlerDEC.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Kernel/HALKit/AXP/CoreSyscallHandlerDEC.cpp b/Kernel/HALKit/AXP/CoreSyscallHandlerDEC.cpp
index f308b0b5..4469eee9 100644
--- a/Kernel/HALKit/AXP/CoreSyscallHandlerDEC.cpp
+++ b/Kernel/HALKit/AXP/CoreSyscallHandlerDEC.cpp
@@ -10,15 +10,15 @@
/// @brief Internal call for syscall, to work with C++.
/// @param stack
/// @return nothing.
-EXTERN_C void rt_syscall_handle(NewOS::HAL::StackFrame* stack)
+EXTERN_C void rt_syscall_handle(Kernel::HAL::StackFrame* stack)
{
if (stack->Rcx <= (kSyscalls.Count() - 1))
{
- NewOS::kcout << "newoskrnl: syscall: enter.\r";
+ Kernel::kcout << "newoskrnl: syscall: enter.\r";
if (kSyscalls[stack->Rcx].Leak().Leak().fHooked)
(kSyscalls[stack->Rcx].Leak().Leak().fProc)(stack);
- NewOS::kcout << "newoskrnl: syscall: exit.\r";
+ Kernel::kcout << "newoskrnl: syscall: exit.\r";
}
}