summaryrefslogtreecommitdiff
path: root/Userland/Utilities/lsof.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Utilities/lsof.cpp')
-rw-r--r--Userland/Utilities/lsof.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/lsof.cpp b/Userland/Utilities/lsof.cpp
index 029565cedc..9a9bafa0bd 100644
--- a/Userland/Utilities/lsof.cpp
+++ b/Userland/Utilities/lsof.cpp
@@ -84,7 +84,7 @@ static bool parse_name(StringView name, OpenFile& file)
static Vector<OpenFile> get_open_files_by_pid(pid_t pid)
{
- auto file = Core::File::open(String::format("/proc/%d/fds", pid), Core::IODevice::OpenMode::ReadOnly);
+ auto file = Core::File::open(String::formatted("/proc/{}/fds", pid), Core::IODevice::OpenMode::ReadOnly);
if (file.is_error()) {
printf("lsof: PID %d: %s\n", pid, file.error().characters());
return Vector<OpenFile>();