mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-27 06:48:49 +00:00
Everywhere: Fix obvious dbgln() bugs
This will allow compiletime dbgln() checks to pass
This commit is contained in:
parent
b68e34cc2e
commit
53ce923e10
Notes:
sideshowbarker
2024-07-18 22:30:22 +09:00
Author: https://github.com/alimpfard
Commit: 53ce923e10
Pull-request: https://github.com/SerenityOS/serenity/pull/4986
Reviewed-by: https://github.com/BenWiederhake
Reviewed-by: https://github.com/asynts
4 changed files with 4 additions and 4 deletions
|
@ -133,7 +133,7 @@ u32 FutexQueue::wake_all(bool& is_empty)
|
|||
ASSERT(data);
|
||||
ASSERT(b.blocker_type() == Thread::Blocker::Type::Futex);
|
||||
auto& blocker = static_cast<Thread::FutexBlocker&>(b);
|
||||
dbgln<FUTEXQUEUE_DEBUG>("FutexQueue @ {}: wake_all unblocking", this, *static_cast<Thread*>(data));
|
||||
dbgln<FUTEXQUEUE_DEBUG>("FutexQueue @ {}: wake_all unblocking {}", this, *static_cast<Thread*>(data));
|
||||
if (blocker.unblock(true)) {
|
||||
did_wake++;
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue