mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:27:36 +00:00
Kernel: Remove spammy log message in sys$sendto()
This commit is contained in:
parent
6b71250d1a
commit
d723d9844f
1 changed files with 0 additions and 1 deletions
|
@ -2607,7 +2607,6 @@ ssize_t Process::sys$sendto(const Syscall::SC_sendto_params* params)
|
||||||
if (!description->is_socket())
|
if (!description->is_socket())
|
||||||
return -ENOTSOCK;
|
return -ENOTSOCK;
|
||||||
auto& socket = *description->socket();
|
auto& socket = *description->socket();
|
||||||
kprintf("sendto %p (%u), flags=%u, addr: %p (%u)\n", data, data_length, flags, addr, addr_length);
|
|
||||||
return socket.sendto(*description, data, data_length, flags, addr, addr_length);
|
return socket.sendto(*description, data, data_length, flags, addr, addr_length);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue