1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 10:01:13 +09:00

Kernel+keymap+KeyboardMapper: New pledge for getkeymap

This commit is contained in:
Ben Wiederhake 2021-01-31 22:50:17 +01:00 committed by Andreas Kling
parent 272df54a3e
commit cbee0c26e1
Notes: sideshowbarker 2024-07-18 22:40:02 +09:00
4 changed files with 11 additions and 5 deletions

View file

@ -32,7 +32,7 @@
int main(int argc, char** argv)
{
if (pledge("stdio setkeymap rpath", nullptr) < 0) {
if (pledge("stdio setkeymap getkeymap rpath", nullptr) < 0) {
perror("pledge");
return 1;
}