summaryrefslogtreecommitdiff
path: root/Userland/Games/Solitaire
diff options
context:
space:
mode:
authorTheMorc <r.gracik@gmail.com>2021-01-15 18:07:51 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-15 18:47:07 +0100
commitb2086c8d7749f6bab881091806fff85fff1f353d (patch)
treee763a9c08684d6ca8eb9577b65a08a70f046242f /Userland/Games/Solitaire
parenta525d0271c087000dfbf04a8fa5865e826ac7f5e (diff)
downloadserenity-b2086c8d7749f6bab881091806fff85fff1f353d.zip
Demos+Games: Pledge "sendfd" in demos and games
Diffstat (limited to 'Userland/Games/Solitaire')
-rw-r--r--Userland/Games/Solitaire/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Games/Solitaire/main.cpp b/Userland/Games/Solitaire/main.cpp
index de04b18218..7607c9b4b7 100644
--- a/Userland/Games/Solitaire/main.cpp
+++ b/Userland/Games/Solitaire/main.cpp
@@ -39,7 +39,7 @@ int main(int argc, char** argv)
auto app = GUI::Application::construct(argc, argv);
auto app_icon = GUI::Icon::default_icon("app-solitaire");
- if (pledge("stdio rpath shared_buffer", nullptr) < 0) {
+ if (pledge("stdio sendfd rpath shared_buffer", nullptr) < 0) {
perror("pledge");
return 1;
}