diff options
Diffstat (limited to 'Userland/Applications/CrashReporter/main.cpp')
-rw-r--r-- | Userland/Applications/CrashReporter/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/CrashReporter/main.cpp b/Userland/Applications/CrashReporter/main.cpp index ae21f397ce..60783c89fd 100644 --- a/Userland/Applications/CrashReporter/main.cpp +++ b/Userland/Applications/CrashReporter/main.cpp @@ -135,7 +135,7 @@ static TitleAndText build_cpu_registers(const ELF::Core::ThreadInfo& thread_info static void unlink_coredump(StringView const& coredump_path) { - if (Core::File::remove(coredump_path, Core::File::RecursionMode::Disallowed, false).is_error()) + if (Core::File::remove(coredump_path, Core::File::RecursionMode::Disallowed).is_error()) dbgln("Failed deleting coredump file"); } |