1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-19 21:43:29 +01:00

kern: fix inverted conditional in waiter debug print

This commit is contained in:
Michael Scire 2020-12-14 10:32:49 -08:00
parent 2c39efea4c
commit 4ff026224e

View file

@ -187,7 +187,7 @@ namespace ams::kern {
} }
/* If we didn't have any waiters, print so. */ /* 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"); MESOSPHERE_RELEASE_LOG(" None\n");
} }
} }