Rename static variable ActionTaken to s_ActionTaken

This commit is contained in:
Robert Müller 2024-04-13 10:58:59 +02:00
parent fd7a1600f6
commit 9cd51576d4

View file

@ -2550,24 +2550,24 @@ void CClient::Update()
#ifdef CONF_DEBUG #ifdef CONF_DEBUG
if(g_Config.m_DbgStress) if(g_Config.m_DbgStress)
{ {
static int64_t ActionTaken = 0; static int64_t s_ActionTaken = 0;
int64_t Now = time_get(); int64_t Now = time_get();
if(State() == IClient::STATE_OFFLINE) if(State() == IClient::STATE_OFFLINE)
{ {
if(Now > ActionTaken + time_freq() * 2) if(Now > s_ActionTaken + time_freq() * 2)
{ {
m_pConsole->Print(IConsole::OUTPUT_LEVEL_DEBUG, "stress", "reconnecting!"); m_pConsole->Print(IConsole::OUTPUT_LEVEL_DEBUG, "stress", "reconnecting!");
Connect(g_Config.m_DbgStressServer); Connect(g_Config.m_DbgStressServer);
ActionTaken = Now; s_ActionTaken = Now;
} }
} }
else else
{ {
if(Now > ActionTaken + time_freq() * (10 + g_Config.m_DbgStress)) if(Now > s_ActionTaken + time_freq() * (10 + g_Config.m_DbgStress))
{ {
m_pConsole->Print(IConsole::OUTPUT_LEVEL_DEBUG, "stress", "disconnecting!"); m_pConsole->Print(IConsole::OUTPUT_LEVEL_DEBUG, "stress", "disconnecting!");
Disconnect(); Disconnect();
ActionTaken = Now; s_ActionTaken = Now;
} }
} }
} }