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