mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:57:35 +00:00
Kernel: Convert a bunch of String::format() => String::formatted()
This commit is contained in:
parent
0ae9ae48fa
commit
7c4ddecacb
14 changed files with 22 additions and 33 deletions
|
@ -107,7 +107,7 @@ private:
|
|||
|
||||
inline const LogStream& operator<<(const LogStream& stream, const Range& value)
|
||||
{
|
||||
return stream << String::format("Range(%x-%x)", value.base().get(), value.end().get() - 1);
|
||||
return stream << String::formatted("Range({:08x}-{:08x})", value.base().get(), value.end().get() - 1);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue