1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 21:48:11 +00:00

Kernel: Convert String::format() => String::formatted()

This commit is contained in:
Andreas Kling 2021-04-21 23:06:28 +02:00
parent 0058a1173e
commit f4eff7df8f
4 changed files with 7 additions and 7 deletions

View file

@ -501,7 +501,7 @@ UNMAP_AFTER_INIT Thread* Scheduler::create_ap_idle_thread(u32 cpu)
VERIFY(Processor::id() == 0);
VERIFY(s_colonel_process);
Thread* idle_thread = s_colonel_process->create_kernel_thread(idle_loop, nullptr, THREAD_PRIORITY_MIN, String::format("idle thread #%u", cpu), 1 << cpu, false);
Thread* idle_thread = s_colonel_process->create_kernel_thread(idle_loop, nullptr, THREAD_PRIORITY_MIN, String::formatted("idle thread #{}", cpu), 1 << cpu, false);
VERIFY(idle_thread);
return idle_thread;
}