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