diff options
Diffstat (limited to 'Userland/Services/KeyboardPreferenceLoader')
-rw-r--r-- | Userland/Services/KeyboardPreferenceLoader/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/KeyboardPreferenceLoader/main.cpp b/Userland/Services/KeyboardPreferenceLoader/main.cpp index 247421e782..7cc995c950 100644 --- a/Userland/Services/KeyboardPreferenceLoader/main.cpp +++ b/Userland/Services/KeyboardPreferenceLoader/main.cpp @@ -16,7 +16,7 @@ ErrorOr<int> serenity_main(Main::Arguments) { - TRY(Core::System::pledge("stdio proc exec rpath")); + TRY(Core::System::pledge("stdio proc exec rpath cpath")); auto keyboard_settings_config = TRY(Core::ConfigFile::open_for_app("KeyboardSettings")); TRY(Core::System::unveil("/bin/keymap", "x")); |