Kernel: Convert snprintf() => String::formatted()/number()

This commit is contained in:
Andreas Kling 2021-02-17 16:37:11 +01:00
commit 6c2f0316d9
Notes: sideshowbarker 2024-07-18 22:11:17 +09:00
3 changed files with 5 additions and 11 deletions

View file

@ -37,7 +37,7 @@ SlavePTY::SlavePTY(MasterPTY& master, unsigned index)
, m_master(master)
, m_index(index)
{
snprintf(m_tty_name, sizeof(m_tty_name), "/dev/pts/%u", m_index);
m_tty_name = String::formatted("/dev/pts/{}", m_index);
auto process = Process::current();
set_uid(process->uid());
set_gid(process->gid());