diff options
author | TheMorc <r.gracik@gmail.com> | 2021-01-15 18:07:51 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-15 18:47:07 +0100 |
commit | b2086c8d7749f6bab881091806fff85fff1f353d (patch) | |
tree | e763a9c08684d6ca8eb9577b65a08a70f046242f /Userland/Games/Solitaire | |
parent | a525d0271c087000dfbf04a8fa5865e826ac7f5e (diff) | |
download | serenity-b2086c8d7749f6bab881091806fff85fff1f353d.zip |
Demos+Games: Pledge "sendfd" in demos and games
Diffstat (limited to 'Userland/Games/Solitaire')
-rw-r--r-- | Userland/Games/Solitaire/main.cpp | 2 |
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; } |