diff options
Diffstat (limited to 'Userland/Applications/About')
-rw-r--r-- | Userland/Applications/About/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/About/main.cpp b/Userland/Applications/About/main.cpp index b7e18caee3..ffe15a2eaa 100644 --- a/Userland/Applications/About/main.cpp +++ b/Userland/Applications/About/main.cpp @@ -33,14 +33,14 @@ int main(int argc, char** argv) { - if (pledge("stdio shared_buffer accept rpath unix cpath fattr", nullptr) < 0) { + if (pledge("stdio sendfd shared_buffer accept rpath unix cpath fattr", nullptr) < 0) { perror("pledge"); return 1; } auto app = GUI::Application::construct(argc, argv); - if (pledge("stdio shared_buffer accept rpath", nullptr) < 0) { + if (pledge("stdio sendfd shared_buffer accept rpath", nullptr) < 0) { perror("pledge"); return 1; } |