mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-03-06 13:35:03 +00:00
Kernel: Convert a bunch of String::format() => String::formatted()
This commit is contained in:
@@ -90,7 +90,7 @@ KResultOr<size_t> InodeWatcher::write(FileDescription&, size_t, const UserOrKern
|
||||
String InodeWatcher::absolute_path(const FileDescription&) const
|
||||
{
|
||||
if (auto inode = m_inode.strong_ref())
|
||||
return String::format("InodeWatcher:%s", inode->identifier().to_string().characters());
|
||||
return String::formatted("InodeWatcher:{}", inode->identifier().to_string());
|
||||
return "InodeWatcher:(gone)";
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user