Everywhere: Fix typos

This commit is contained in:
Linus Groh 2021-01-22 17:42:36 +01:00 committed by Andreas Kling
commit 421587c15c
Notes: sideshowbarker 2024-07-18 23:00:25 +09:00
12 changed files with 16 additions and 16 deletions

View file

@ -74,7 +74,7 @@ void WaitQueue::wake_one()
u32 WaitQueue::wake_n(u32 wake_count)
{
if (wake_count == 0)
return 0; // should we assert instaed?
return 0; // should we assert instead?
ScopedSpinLock lock(m_lock);
#ifdef WAITQUEUE_DEBUG
dbg() << "WaitQueue @ " << this << ": wake_n(" << wake_count << ")";