Fix typo.

This commit is contained in:
Jonathan Naylor 2018-11-15 19:30:27 +00:00
parent 1e4a11f0a6
commit 05e66c15d1
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View file

@ -8,4 +8,4 @@ Release
*.bak
.vs
*.a
*.d

View file

@ -746,7 +746,7 @@ void CRepeaterHandler::processRepeater(CAMBEData& data)
m_fastData = true;
else if (::memcmp(buffer, ICOM_DATA_MODE_BYTES1, VOICE_FRAME_LENGTH_BYTES) == 0)
m_fastData = true;
else if (::memcmp(buffer, ICOM_DATA_MODE_BYTES2, VOICE_FRAME_LENGTH_BYTES) == 0) {
else if (::memcmp(buffer, ICOM_DATA_MODE_BYTES2, VOICE_FRAME_LENGTH_BYTES) == 0)
m_fastData = true;
}