mirror of
https://github.com/Atmosphere-NX/Atmosphere-libs.git
synced 2025-06-29 14:32:58 +02:00
kern: fix inverted conditional in waiter debug print
This commit is contained in:
parent
15189e577e
commit
85e817da3e
@ -187,7 +187,7 @@ namespace ams::kern {
|
||||
}
|
||||
|
||||
/* If we didn't have any waiters, print so. */
|
||||
if (this->thread_list_head != nullptr) {
|
||||
if (this->thread_list_head == nullptr) {
|
||||
MESOSPHERE_RELEASE_LOG(" None\n");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user