FlappyBug: Remove wpath and cpath pledges

With the move to LibConfig, these are no longer needed.
This commit is contained in:
Luke Wilde 2021-08-27 14:56:05 +01:00 committed by Ali Mohammad Pur
commit fd51a3cf15
Notes: sideshowbarker 2024-07-18 05:10:09 +09:00

View file

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