mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:28:12 +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
|
@ -70,7 +70,7 @@ VirtualConsole::VirtualConsole(const unsigned index)
|
|||
{
|
||||
ASSERT(index < s_max_virtual_consoles);
|
||||
|
||||
m_tty_name = String::format("/dev/tty%u", m_index);
|
||||
m_tty_name = String::formatted("/dev/tty{}", m_index);
|
||||
m_terminal.set_size(80, 25);
|
||||
|
||||
s_consoles[index] = this;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue