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

@ -66,7 +66,7 @@ private:
RefPtr<MasterPTY> m_master;
time_t m_time_of_last_write { 0 };
unsigned m_index { 0 };
char m_tty_name[32];
String m_tty_name;
};
}