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