Requested changes

Changed indentation from space to tab, used false instead of 0 for boolean variables.
This commit is contained in:
Antonio Matraia 2023-07-26 22:02:47 +02:00
parent 2530199d54
commit 95d83fd9ce
4 changed files with 19 additions and 19 deletions

View file

@ -276,7 +276,7 @@ bool CConf::read()
m_ysfNetworkYSF2P25Address = value;
else if (::strcmp(key, "YSF2P25Port") == 0)
m_ysfNetworkYSF2P25Port = (unsigned short)::atoi(value);
else if (::strcmp(key, "YSFDirectAddress") == 0)
else if (::strcmp(key, "YSFDirectAddress") == 0)
m_ysfNetworkYSFDirectAddress = value;
else if (::strcmp(key, "YSFDirectPort") == 0)
m_ysfNetworkYSFDirectPort = (unsigned short)::atoi(value);