summaryrefslogtreecommitdiff
path: root/Servers/AudioServer/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Servers/AudioServer/main.cpp')
-rw-r--r--Servers/AudioServer/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Servers/AudioServer/main.cpp b/Servers/AudioServer/main.cpp
index 496feb850c..3f76f04642 100644
--- a/Servers/AudioServer/main.cpp
+++ b/Servers/AudioServer/main.cpp
@@ -4,12 +4,12 @@
int main(int, char**)
{
- if (pledge("stdio thread shared_buffer rpath wpath cpath unix fattr", nullptr) < 0) {
+ if (pledge("stdio thread shared_buffer accept rpath wpath cpath unix fattr", nullptr) < 0) {
perror("pledge");
return 1;
}
ASEventLoop event_loop;
- if (pledge("stdio thread shared_buffer rpath wpath unix", nullptr) < 0) {
+ if (pledge("stdio thread shared_buffer accept rpath wpath", nullptr) < 0) {
perror("pledge");
return 1;
}