diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-05-20 19:45:27 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-05-20 19:45:27 +0200 |
commit | f008156dbf30a892827f3b6bf7203680533b2eb9 (patch) | |
tree | 3abb56e75ea3041f6b7a0ee1e56dab416d435575 /Kernel/Net/Socket.cpp | |
parent | 9df8d2854270cac2af04c1dc77db340f4ff3a031 (diff) | |
download | serenity-f008156dbf30a892827f3b6bf7203680533b2eb9.zip |
Socket: Fix missing kprintf() args in setsockopt().
Diffstat (limited to 'Kernel/Net/Socket.cpp')
-rw-r--r-- | Kernel/Net/Socket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Net/Socket.cpp b/Kernel/Net/Socket.cpp index c01295d7a6..944145b9b1 100644 --- a/Kernel/Net/Socket.cpp +++ b/Kernel/Net/Socket.cpp @@ -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); } } |