Remove a compiler warning.

This commit is contained in:
Jonathan Naylor 2016-05-10 06:34:53 +01:00
parent 68d58a3de6
commit 35632e0255

View file

@ -1032,7 +1032,7 @@ bool CModem::sendCWId(const std::string& callsign)
// CUtils::dump(1U, "Written", buffer, length + 3U);
return m_serial.write(buffer, length + 3U) == (length + 3U);
return m_serial.write(buffer, length + 3U) == int(length + 3U);
}
bool CModem::writeDMRStart(bool tx)