We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5dfd5e commit 18c559bCopy full SHA for 18c559b
Userland/Applications/SoundPlayer/main.cpp
@@ -26,13 +26,13 @@
26
27
ErrorOr<int> serenity_main(Main::Arguments arguments)
28
{
29
- TRY(Core::System::pledge("stdio recvfd sendfd rpath thread unix"));
+ TRY(Core::System::pledge("stdio recvfd sendfd rpath thread unix proc"));
30
31
auto app = TRY(GUI::Application::try_create(arguments));
32
auto audio_client = TRY(Audio::ConnectionToServer::try_create());
33
auto decoder_client = TRY(ImageDecoderClient::Client::try_create());
34
35
- TRY(Core::System::pledge("stdio recvfd sendfd rpath thread"));
+ TRY(Core::System::pledge("stdio recvfd sendfd rpath thread proc"));
36
37
auto app_icon = GUI::Icon::default_icon("app-sound-player"sv);
38
0 commit comments