1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:58:11 +00:00

Kernel: Remove spammy log message in sys$sendto()

This commit is contained in:
Andreas Kling 2019-12-14 11:30:45 +01:00
parent 6b71250d1a
commit d723d9844f

View file

@ -2607,7 +2607,6 @@ ssize_t Process::sys$sendto(const Syscall::SC_sendto_params* params)
if (!description->is_socket())
return -ENOTSOCK;
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);
}