summaryrefslogtreecommitdiff
path: root/Userland/Applications/Welcome/main.cpp
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2022-10-14 21:55:17 +0300
committerAndrew Kaster <andrewdkaster@gmail.com>2022-10-25 15:33:34 -0600
commit5dfb2b18f36432bf334ebcdf21591fd5426eb9b4 (patch)
tree8aedee7f675b3dbc190f0dffacdcf84c0fdc3ba6 /Userland/Applications/Welcome/main.cpp
parent6e508573a0c1a3a3730bfeb0bc0ee06071f7248f (diff)
downloadserenity-5dfb2b18f36432bf334ebcdf21591fd5426eb9b4.zip
Applications: Use new global variables at /sys/kernel/ directory
Diffstat (limited to 'Userland/Applications/Welcome/main.cpp')
-rw-r--r--Userland/Applications/Welcome/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Welcome/main.cpp b/Userland/Applications/Welcome/main.cpp
index 4598b0e102..529a0a1d84 100644
--- a/Userland/Applications/Welcome/main.cpp
+++ b/Userland/Applications/Welcome/main.cpp
@@ -19,7 +19,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
Config::pledge_domain("SystemServer");
- TRY(Core::System::unveil("/proc/all", "r"));
+ TRY(Core::System::unveil("/sys/kernel/processes", "r"));
TRY(Core::System::unveil("/tmp/session/%sid/portal/webcontent", "rw"));
TRY(Core::System::unveil("/tmp/session/%sid/portal/filesystemaccess", "rw"));
TRY(Core::System::unveil("/res", "r"));