Match unsigned with unsigned

This commit is contained in:
Reed Nightingale 2020-01-26 10:39:01 -08:00
parent b65e5eb90c
commit f54320e8cb

View File

@ -66,7 +66,7 @@ static void morseLetter(char c, uint16_t dit_duration_ms){
return;
}
for (int i = 0; i < sizeof(morse_table)/ sizeof(struct Morse); i++){
for (unsigned int i = 0; i < sizeof(morse_table)/ sizeof(struct Morse); i++){
struct Morse m;
memcpy_P(&m, morse_table + i, sizeof(struct Morse));