summaryrefslogtreecommitdiff
path: root/Userland/Utilities/truncate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Utilities/truncate.cpp')
-rw-r--r--Userland/Utilities/truncate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/truncate.cpp b/Userland/Utilities/truncate.cpp
index 50a615fccf..4f7b1442ad 100644
--- a/Userland/Utilities/truncate.cpp
+++ b/Userland/Utilities/truncate.cpp
@@ -20,7 +20,7 @@ enum TruncateOperation {
ErrorOr<int> serenity_main(Main::Arguments arguments)
{
- TRY(Core::System::pledge("stdio rpath wpath cpath", nullptr));
+ TRY(Core::System::pledge("stdio rpath wpath cpath"));
const char* resize = nullptr;
const char* reference = nullptr;