1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 21:58:10 +00:00

Socket: Fix missing kprintf() args in setsockopt().

This commit is contained in:
Andreas Kling 2019-05-20 19:45:27 +02:00
parent 9df8d28542
commit f008156dbf

View file

@ -76,7 +76,7 @@ KResult Socket::setsockopt(int level, int option, const void* value, socklen_t v
m_receive_timeout = *(const timeval*)value;
return KSuccess;
default:
kprintf("%s(%u): setsockopt() at SOL_SOCKET with unimplemented option %d\n", option);
kprintf("%s(%u): setsockopt() at SOL_SOCKET with unimplemented option %d\n", current->process().name().characters(), current->process().pid(), option);
return KResult(-ENOPROTOOPT);
}
}