diff --git a/Applications/TextEditor/main.cpp b/Applications/TextEditor/main.cpp index 4d33acfefeb..73e9ebb9fd1 100644 --- a/Applications/TextEditor/main.cpp +++ b/Applications/TextEditor/main.cpp @@ -30,14 +30,14 @@ int main(int argc, char** argv) { - if (pledge("stdio rpath accept cpath wpath shared_buffer unix fattr", nullptr) < 0) { + if (pledge("stdio thread rpath accept cpath wpath shared_buffer unix fattr", nullptr) < 0) { perror("pledge"); return 1; } GUI::Application app(argc, argv); - if (pledge("stdio rpath accept cpath wpath shared_buffer", nullptr) < 0) { + if (pledge("stdio thread rpath accept cpath wpath shared_buffer", nullptr) < 0) { perror("pledge"); return 1; }