summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/HALKit/AXP/CoreSyscallHandlerDEC.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dev/Kernel/HALKit/AXP/CoreSyscallHandlerDEC.cpp')
-rw-r--r--dev/Kernel/HALKit/AXP/CoreSyscallHandlerDEC.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/Kernel/HALKit/AXP/CoreSyscallHandlerDEC.cpp b/dev/Kernel/HALKit/AXP/CoreSyscallHandlerDEC.cpp
index f9b67177..233bc5e0 100644
--- a/dev/Kernel/HALKit/AXP/CoreSyscallHandlerDEC.cpp
+++ b/dev/Kernel/HALKit/AXP/CoreSyscallHandlerDEC.cpp
@@ -14,11 +14,11 @@ EXTERN_C void rt_syscall_handle(Kernel::HAL::StackFrame* stack)
{
if (stack->Rcx <= (kSyscalls.Count() - 1))
{
- kcout << "syscall: enter.\r";
+ kout << "syscall: enter.\r";
if (kSyscalls[stack->Rcx].Leak().Leak().fHooked)
(kSyscalls[stack->Rcx].Leak().Leak().fProc)(stack);
- kcout << "syscall: exit.\r";
+ kout << "syscall: exit.\r";
}
}