kernel: Remove debug message in readlink
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
apio 2023-07-25 17:30:56 +02:00
parent 7f990b161b
commit b88da4811f
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -81,8 +81,6 @@ Result<u64> sys_readlinkat(Registers*, SyscallArgs args)
usize nread = linkpath.length();
if (nread > bufsiz) nread = bufsiz;
kdbgln("readlink: reading %zu bytes from symlink (%s)", nread, linkpath.chars());
if (!MemoryManager::copy_to_user(buf, linkpath.chars(), nread)) return err(EFAULT);
return nread;