0
1
mirror of https://github.com/radio95-rnt/rds95.git synced 2026-02-26 20:33:53 +01:00

fix unused args error

This commit is contained in:
2025-03-13 21:10:56 +01:00
parent 1475156ff1
commit d95a69ddc6

View File

@@ -207,14 +207,17 @@ static void handle_eccen(unsigned char *arg) {
}
static void handle_clear_af(unsigned char *arg) {
(void)arg;
clear_rds_af();
}
static void handle_tps_off(unsigned char *arg) {
(void)arg;
set_rds_tpson(0);
}
static void handle_lps_off(unsigned char *arg) {
(void)arg;
set_rds_lpson(0);
}