mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-05 16:14:38 +00:00
Kernel: Fix bitrotted DEBUG_IO logging
This commit is contained in:
@@ -1984,7 +1984,7 @@ int Process::sys$open(const Syscall::SC_open_params* user_params)
|
||||
if (path.is_error())
|
||||
return path.error();
|
||||
#ifdef DEBUG_IO
|
||||
dbgprintf("%s(%u) sys$open(%d, \"%s\")\n", dirfd, name().characters(), pid(), path.value().characters());
|
||||
dbg() << "sys$open(dirfd=" << dirfd << ", path=\"" << path.value() << "\", options=" << options << ", mode=" << mode << ")";
|
||||
#endif
|
||||
int fd = alloc_fd();
|
||||
if (fd < 0)
|
||||
|
||||
Reference in New Issue
Block a user