1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 06:58:11 +00:00

About: Drop "unix" pledge after connecting to WindowServer

This commit is contained in:
Andreas Kling 2020-01-13 12:15:10 +01:00
parent 6f89557ffc
commit 6182a1a71c

View file

@ -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;
}