summaryrefslogtreecommitdiff
path: root/Userland/Utilities/blockdev.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Utilities/blockdev.cpp')
-rw-r--r--Userland/Utilities/blockdev.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/blockdev.cpp b/Userland/Utilities/blockdev.cpp
index 06ed0549ee..f911347ac4 100644
--- a/Userland/Utilities/blockdev.cpp
+++ b/Userland/Utilities/blockdev.cpp
@@ -26,7 +26,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
{
TRY(Core::System::unveil("/dev", "r"));
TRY(Core::System::unveil(nullptr, nullptr));
- TRY(Core::System::pledge("stdio rpath", nullptr));
+ TRY(Core::System::pledge("stdio rpath"));
const char* device = nullptr;