diff --git a/Userland/Applications/Spreadsheet/main.cpp b/Userland/Applications/Spreadsheet/main.cpp index 8ed747ee8d..a4fbd2f573 100644 --- a/Userland/Applications/Spreadsheet/main.cpp +++ b/Userland/Applications/Spreadsheet/main.cpp @@ -22,18 +22,13 @@ int main(int argc, char* argv[]) { - if (pledge("stdio recvfd sendfd rpath unix cpath wpath thread", nullptr) < 0) { + if (pledge("stdio recvfd sendfd rpath fattr unix cpath wpath thread", nullptr) < 0) { perror("pledge"); return 1; } auto app = GUI::Application::construct(argc, argv); - if (pledge("stdio recvfd sendfd thread rpath cpath wpath unix", nullptr) < 0) { - perror("pledge"); - return 1; - } - const char* filename = nullptr; Core::ArgsParser args_parser;