1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 00:55:08 +00:00

SystemMenu: Remove the unveil() call for /etc/PowerOptions.ini

The file is not used.
This commit is contained in:
Alex Muscar 2020-03-16 11:05:48 +00:00
parent 66794d51ef
commit 838d1c38a1

View file

@ -90,11 +90,6 @@ int main(int argc, char** argv)
return 1;
}
if (unveil("/etc/PowerOptions.ini", "r")) {
perror("unveil");
return 1;
}
unveil(nullptr, nullptr);
return app.exec();