Kernel: Remove leftover debug spam when returning from mkdir() syscall.

This commit is contained in:
Andreas Kling 2019-03-14 14:11:35 +01:00
parent 68f3771e4f
commit d712d353ac

View file

@ -251,7 +251,5 @@ void syscall_trap_entry(RegisterDump& regs)
dword arg2 = regs.ecx;
dword arg3 = regs.ebx;
regs.eax = Syscall::handle(regs, function, arg1, arg2, arg3);
if (function == Syscall::SC_mkdir)
dbgprintf("->%d\n", regs.eax);
}