From 05e66c15d190e547294b127bde31af6e9a915bd1 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Thu, 15 Nov 2018 19:30:27 +0000 Subject: [PATCH] Fix typo. --- .gitignore | 2 +- Common/RepeaterHandler.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e3bcc9a..5b78d6c 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,4 @@ Release *.bak .vs *.a - +*.d diff --git a/Common/RepeaterHandler.cpp b/Common/RepeaterHandler.cpp index ddfc764..1a25db0 100644 --- a/Common/RepeaterHandler.cpp +++ b/Common/RepeaterHandler.cpp @@ -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; }