Merge pull request #47 from phl0/fixIndents

Fix two compiler warnings about indentiation
pull/48/head
Andy CA6JAU 8 years ago committed by GitHub
commit 53bdee6244
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -798,10 +798,11 @@ void CSerialPort::process()
case MMDVM_POCSAG_DATA:
if (m_pocsagEnable) {
if (m_modemState == STATE_IDLE || m_modemState == STATE_POCSAG)
if (m_modemState == STATE_IDLE || m_modemState == STATE_POCSAG) {
m_pocsag_state = true;
err = pocsagTX.writeData(m_buffer + 3U, m_len - 3U);
}
}
if (err == 0U) {
if (m_modemState == STATE_IDLE)
setMode(STATE_POCSAG);

Loading…
Cancel
Save

Powered by TurnKey Linux.