1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:57:35 +00:00

Games: Make cpath appear once in the pledge promises

This commit is contained in:
Ralf Donau 2021-08-22 14:06:44 +02:00 committed by Andreas Kling
parent 969aee2022
commit 9bef96748d
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@
int main(int argc, char** argv)
{
if (pledge("stdio rpath wpath cpath recvfd sendfd cpath unix", nullptr) < 0) {
if (pledge("stdio rpath wpath cpath recvfd sendfd unix", nullptr) < 0) {
perror("pledge");
return 1;
}