diff options
Diffstat (limited to 'Userland/MenuApplets/ClipboardHistory/main.cpp')
-rw-r--r-- | Userland/MenuApplets/ClipboardHistory/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/MenuApplets/ClipboardHistory/main.cpp b/Userland/MenuApplets/ClipboardHistory/main.cpp index 544ec81f5c..6275296745 100644 --- a/Userland/MenuApplets/ClipboardHistory/main.cpp +++ b/Userland/MenuApplets/ClipboardHistory/main.cpp @@ -35,14 +35,14 @@ int main(int argc, char* argv[]) { - if (pledge("stdio sendfd shared_buffer 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 sendfd shared_buffer accept rpath", nullptr) < 0) { + if (pledge("stdio recvfd sendfd accept rpath", nullptr) < 0) { perror("pledge"); return 1; } |