summaryrefslogtreecommitdiff
path: root/Applications/FontEditor
diff options
context:
space:
mode:
Diffstat (limited to 'Applications/FontEditor')
-rw-r--r--Applications/FontEditor/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Applications/FontEditor/main.cpp b/Applications/FontEditor/main.cpp
index b143f3835e..f18ec99dc1 100644
--- a/Applications/FontEditor/main.cpp
+++ b/Applications/FontEditor/main.cpp
@@ -9,14 +9,14 @@
int main(int argc, char** argv)
{
- if (pledge("stdio shared_buffer unix rpath cpath wpath fattr", nullptr) < 0) {
+ if (pledge("stdio shared_buffer rpath accept unix cpath wpath fattr", nullptr) < 0) {
perror("pledge");
return 1;
}
GApplication app(argc, argv);
- if (pledge("stdio shared_buffer rpath cpath wpath", nullptr) < 0) {
+ if (pledge("stdio shared_buffer rpath accept cpath wpath", nullptr) < 0) {
perror("pledge");
return 1;
}