Everywhere: Fix obvious dbgln() bugs

This will allow compiletime dbgln() checks to pass
This commit is contained in:
AnotherTest 2021-01-17 12:32:26 +03:30 committed by Andreas Kling
commit 53ce923e10
Notes: sideshowbarker 2024-07-18 22:30:22 +09:00
4 changed files with 4 additions and 4 deletions

View file

@ -903,7 +903,7 @@ public:
}
if (m_blocker && !m_blocker->can_be_interrupted() && !m_should_die) {
block_lock2.unlock();
dbgln("Thread should not be unblocking, current state: ", state_string());
dbgln("Thread should not be unblocking, current state: {}", state_string());
set_state(Thread::Blocked);
continue;
}