small correction

This commit is contained in:
Martin Brodbeck 2024-02-28 14:32:50 +01:00
parent 7614544e55
commit 45c0d367f5
1 changed files with 1 additions and 1 deletions

View File

@ -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]);
}