From 6182a1a71c83ea5c223894e5665abbec57fa2150 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 13 Jan 2020 12:15:10 +0100 Subject: [PATCH] About: Drop "unix" pledge after connecting to WindowServer --- Applications/About/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/About/main.cpp b/Applications/About/main.cpp index dd1e0a26c0..aee5bae1d9 100644 --- a/Applications/About/main.cpp +++ b/Applications/About/main.cpp @@ -16,7 +16,7 @@ int main(int argc, char** argv) GApplication app(argc, argv); - if (pledge("stdio shared_buffer unix rpath", nullptr) < 0) { + if (pledge("stdio shared_buffer rpath", nullptr) < 0) { perror("pledge"); return 1; }