mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2025-02-21 06:57:27 -05:00
Match unsigned with unsigned
This commit is contained in:
parent
b65e5eb90c
commit
f54320e8cb
@ -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));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user