hle: kernel: k_condition_variable: Revert unnecessary style changes.

This commit is contained in:
bunnei 2021-12-05 23:51:24 -08:00
parent 0d1bdfc1d4
commit 2e8d737a96
1 changed files with 2 additions and 2 deletions

View File

@ -240,7 +240,7 @@ void KConditionVariable::SignalImpl(KThread* thread) {
void KConditionVariable::Signal(u64 cv_key, s32 count) {
// Perform signaling.
int num_waiters = 0;
s32 num_waiters{};
{
KScopedSchedulerLock sl(kernel);
@ -257,7 +257,7 @@ void KConditionVariable::Signal(u64 cv_key, s32 count) {
// If we have no waiters, clear the has waiter flag.
if (it == thread_tree.end() || it->GetConditionVariableKey() != cv_key) {
const u32 has_waiter_flag = 0;
const u32 has_waiter_flag{};
WriteToUser(system, cv_key, std::addressof(has_waiter_flag));
}
}