Requested changes
Changed indentation from space to tab, used false instead of 0 for boolean variables.
This commit is contained in:
parent
2530199d54
commit
95d83fd9ce
4 changed files with 19 additions and 19 deletions
YSFGateway
|
@ -286,7 +286,7 @@ int CYSFGateway::run()
|
|||
if (reflector != NULL)
|
||||
wx_tmp = reflector->m_wiresX;
|
||||
else
|
||||
wx_tmp = 0;
|
||||
wx_tmp = false;
|
||||
if (m_ysfNetwork != NULL && m_linkType == LINK_YSF && wiresXCommandPassthrough && wx_tmp) {
|
||||
processDTMF(buffer, dt);
|
||||
processWiresX(buffer, fich, true, wiresXCommandPassthrough);
|
||||
|
@ -297,7 +297,7 @@ int CYSFGateway::run()
|
|||
if (reflector != NULL)
|
||||
wx_tmp = reflector->m_wiresX;
|
||||
else
|
||||
wx_tmp = 0;
|
||||
wx_tmp = false;
|
||||
if (m_ysfNetwork != NULL && m_linkType == LINK_YSF && wx_tmp)
|
||||
m_exclude = (dt == YSF_DT_DATA_FR_MODE);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue