Remove a compiler warning.
This commit is contained in:
parent
68d58a3de6
commit
35632e0255
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue