diff --git a/libraries/libmesosphere/source/kern_k_synchronization_object.cpp b/libraries/libmesosphere/source/kern_k_synchronization_object.cpp index 5fdefbf4b..1dcb33c2a 100644 --- a/libraries/libmesosphere/source/kern_k_synchronization_object.cpp +++ b/libraries/libmesosphere/source/kern_k_synchronization_object.cpp @@ -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"); } }