summaryrefslogtreecommitdiff
path: root/AK/SharedBuffer.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-07-05 16:36:28 +0200
committerAndreas Kling <kling@serenityos.org>2020-07-05 16:36:28 +0200
commit2c4a16840483b87b73788a1de0ff826aa759d64e (patch)
treef77c9c7ab6eb18b31ee4514c943d21c12bfdfb17 /AK/SharedBuffer.cpp
parent554b58d85fb4d1442e95ada5bea524956d28c8dd (diff)
downloadserenity-2c4a16840483b87b73788a1de0ff826aa759d64e.zip
AK: Remove debug spam in SharedBuffer::create_from_shbuf_id()
Diffstat (limited to 'AK/SharedBuffer.cpp')
-rw-r--r--AK/SharedBuffer.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/AK/SharedBuffer.cpp b/AK/SharedBuffer.cpp
index 3c46169db1..c0ce19db74 100644
--- a/AK/SharedBuffer.cpp
+++ b/AK/SharedBuffer.cpp
@@ -69,10 +69,8 @@ RefPtr<SharedBuffer> SharedBuffer::create_from_shbuf_id(int shbuf_id)
{
size_t size = 0;
void* data = shbuf_get(shbuf_id, &size);
- if (data == (void*)-1) {
- perror("shbuf_get");
+ if (data == (void*)-1)
return nullptr;
- }
return adopt(*new SharedBuffer(shbuf_id, size, data));
}