diff options
Diffstat (limited to 'Userland/Applications/FontEditor')
-rw-r--r-- | Userland/Applications/FontEditor/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Applications/FontEditor/main.cpp b/Userland/Applications/FontEditor/main.cpp index f0a72d1d29..31e0450814 100644 --- a/Userland/Applications/FontEditor/main.cpp +++ b/Userland/Applications/FontEditor/main.cpp @@ -44,14 +44,14 @@ int main(int argc, char** argv) { - if (pledge("stdio shared_buffer thread rpath accept unix cpath wpath fattr unix", nullptr) < 0) { + if (pledge("stdio sendfd shared_buffer thread rpath accept unix cpath wpath fattr unix", nullptr) < 0) { perror("pledge"); return 1; } auto app = GUI::Application::construct(argc, argv); - if (pledge("stdio shared_buffer thread rpath accept cpath wpath unix", nullptr) < 0) { + if (pledge("stdio sendfd shared_buffer thread rpath accept cpath wpath unix", nullptr) < 0) { perror("pledge"); return 1; } @@ -64,7 +64,7 @@ int main(int argc, char** argv) return 1; } - if (pledge("stdio shared_buffer thread rpath accept cpath wpath", nullptr) < 0) { + if (pledge("stdio sendfd shared_buffer thread rpath accept cpath wpath", nullptr) < 0) { perror("pledge"); return 1; } |