summaryrefslogtreecommitdiff
path: root/Userland/Applications/Help
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-01-17 08:18:11 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-17 09:07:32 +0100
commitcc8b3c92ba1c7ee3581fa2f13ade696766dd7215 (patch)
treeb6bc2d280e127c398f90f73a1ecc32b09441bbe5 /Userland/Applications/Help
parentb42f0b9650fe4f2571896371a1c9820e1d7b2fbc (diff)
downloadserenity-cc8b3c92ba1c7ee3581fa2f13ade696766dd7215.zip
Everywhere: Remove a bunch of now-unnecessary shared_buffer pledges
Diffstat (limited to 'Userland/Applications/Help')
-rw-r--r--Userland/Applications/Help/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/Help/main.cpp b/Userland/Applications/Help/main.cpp
index cd84af840b..f6bf6adc75 100644
--- a/Userland/Applications/Help/main.cpp
+++ b/Userland/Applications/Help/main.cpp
@@ -53,14 +53,14 @@
int main(int argc, char* argv[])
{
- if (pledge("stdio shared_buffer recvfd sendfd accept rpath unix cpath fattr", nullptr) < 0) {
+ if (pledge("stdio recvfd sendfd accept rpath unix cpath fattr", nullptr) < 0) {
perror("pledge");
return 1;
}
auto app = GUI::Application::construct(argc, argv);
- if (pledge("stdio shared_buffer recvfd sendfd accept rpath unix", nullptr) < 0) {
+ if (pledge("stdio recvfd sendfd accept rpath unix", nullptr) < 0) {
perror("pledge");
return 1;
}