summaryrefslogtreecommitdiff
path: root/Userland/Services/CrashDaemon/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Services/CrashDaemon/main.cpp')
-rw-r--r--Userland/Services/CrashDaemon/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/CrashDaemon/main.cpp b/Userland/Services/CrashDaemon/main.cpp
index c9c84324f2..927157ac59 100644
--- a/Userland/Services/CrashDaemon/main.cpp
+++ b/Userland/Services/CrashDaemon/main.cpp
@@ -53,7 +53,7 @@ static void launch_crash_reporter(const String& coredump_path, bool unlink_on_ex
ErrorOr<int> serenity_main(Main::Arguments)
{
- TRY(Core::System::pledge("stdio rpath wpath cpath proc exec", nullptr));
+ TRY(Core::System::pledge("stdio rpath wpath cpath proc exec"));
Core::BlockingFileWatcher watcher;
TRY(watcher.add_watch("/tmp/coredump", Core::FileWatcherEvent::Type::ChildCreated));