kenwood.h: fix typo

looks like `last_mode_pc` was missing a character on the type. This was caught by compiling on musl libc, where `mode_t` wasn't available from any of the other includes.
pull/1664/head
classabbyamp 2025-01-24 22:40:29 -05:00 zatwierdzone przez GitHub
rodzic bb4eb78d22
commit 710dfea56e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -183,7 +183,7 @@ struct kenwood_priv_data
int save_k2_ext_lvl; // so we can restore to original
int save_k3_ext_lvl; // so we can restore to original -- for future use if needed
int voice_bank; /* last voice bank send for use by stop_voice_mem */
mode_t last_mode_pc; // last mode memory for PC command
rmode_t last_mode_pc; // last mode memory for PC command
int power_now,power_min,power_max;
};