diff options
author | asynts <asynts@gmail.com> | 2021-01-09 18:51:44 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-09 21:11:09 +0100 |
commit | 938e5c7719ee546538bdfc44339b6c561b45edc9 (patch) | |
tree | 098bcb7d707e3a5e747eb5d5bc7381bb2146d67a /Kernel/Net/Socket.cpp | |
parent | 40b8e2111595affb0a6ad8eb643c8f730f7a3c77 (diff) | |
download | serenity-938e5c7719ee546538bdfc44339b6c561b45edc9.zip |
Everywhere: Replace a bundle of dbg with dbgln.
These changes are arbitrarily divided into multiple commits to make it
easier to find potentially introduced bugs with git bisect.Everything:
The modifications in this commit were automatically made using the
following command:
find . -name '*.cpp' -exec sed -i -E 's/dbg\(\) << ("[^"{]*");/dbgln\(\1\);/' {} \;
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 4aeccb254b..0a11bbbca0 100644 --- a/Kernel/Net/Socket.cpp +++ b/Kernel/Net/Socket.cpp @@ -188,7 +188,7 @@ KResult Socket::getsockopt(FileDescription&, int level, int option, Userspace<vo case SO_ERROR: { if (size < sizeof(int)) return KResult(-EINVAL); - dbg() << "getsockopt(SO_ERROR): FIXME!"; + dbgln("getsockopt(SO_ERROR): FIXME!"); int errno = 0; if (!copy_to_user(static_ptr_cast<int*>(value), &errno)) return KResult(-EFAULT); |