mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-18 13:48:37 -04:00
Fix gcc warnings
This commit is contained in:
@@ -164,7 +164,7 @@ void BaudotDecoder::init()
|
||||
|
||||
QString BaudotDecoder::decode(char bits)
|
||||
{
|
||||
QString c = m_figure ? m_figures[bits] : m_letters[bits];
|
||||
QString c = m_figure ? m_figures[(int)bits] : m_letters[(int)bits];
|
||||
|
||||
if ((c == '>') || (m_unshiftOnSpace && (c == " ")))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user