1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-22 16:08:39 -05:00

CW keyer: used signed char to avoid copmilation warnings in some installations

This commit is contained in:
f4exb 2018-08-13 22:10:42 +02:00
parent 62deb64f57
commit a7e63df13d

View File

@ -127,7 +127,7 @@ private:
bool m_dot;
bool m_dash;
bool m_elementOn;
char m_asciiChar;
signed char m_asciiChar;
CWKeyIambicState m_keyIambicState;
CWTextState m_textState;
CWSmoother m_cwSmoother;