1
0
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:
Jon Beniston
2023-03-03 16:46:03 +00:00
parent 6a0a7e0bd9
commit bc29c5105d
2 changed files with 5 additions and 6 deletions
+1 -1
View File
@@ -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 == " ")))
{