summaryrefslogtreecommitdiff
path: root/Applications/DisplayProperties/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Applications/DisplayProperties/main.cpp')
-rw-r--r--Applications/DisplayProperties/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Applications/DisplayProperties/main.cpp b/Applications/DisplayProperties/main.cpp
index fe01d670b8..0fb4464b13 100644
--- a/Applications/DisplayProperties/main.cpp
+++ b/Applications/DisplayProperties/main.cpp
@@ -12,14 +12,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;
}