small correction
This commit is contained in:
parent
7614544e55
commit
45c0d367f5
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ void Keyer::sendCharacter(const char ch)
|
|||
return;
|
||||
}
|
||||
|
||||
for (unsigned int i = 0; i < strlen(morseSymbols); i++) {
|
||||
for (size_t i = 0; i < strlen(morseSymbols); i++) {
|
||||
m_messageQueue.push(morseSymbols[i]);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue