From bd3ea52cba29a7c6180e0bc21f0a66c86c2fc8ad Mon Sep 17 00:00:00 2001 From: James R Date: Wed, 13 May 2020 17:52:49 -0700 Subject: [PATCH] ok (cherry picked from commit 0b9c20cc7086000548e02b39c1abf94ffb56feae) --- src/m_menu.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/m_menu.c b/src/m_menu.c index 24852285..d0502692 100644 --- a/src/m_menu.c +++ b/src/m_menu.c @@ -8609,19 +8609,19 @@ static void Check_new_version_thread (int *id) { int hosting; - int ok; + int okay; - ok = 0; + okay = 0; if (M_CheckMODVersion(*id)) { I_lock_mutex(&ms_QueryId_mutex); { - ok = ( *id == ms_QueryId ); + okay = ( *id == ms_QueryId ); } I_unlock_mutex(ms_QueryId_mutex); - if (ok) + if (okay) { I_lock_mutex(&m_menu_mutex); { @@ -8637,12 +8637,12 @@ Check_new_version_thread (int *id) { I_lock_mutex(&ms_QueryId_mutex); { - ok = ( *id == ms_QueryId ); + okay = ( *id == ms_QueryId ); } I_unlock_mutex(ms_QueryId_mutex); } - if (ok) + if (okay) { I_lock_mutex(&m_menu_mutex); {