From d95a69ddc6cccb4c41b9935fdc3f60c68ca21780 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Thu, 13 Mar 2025 21:10:56 +0100 Subject: [PATCH] fix unused args error --- src/ascii_cmd.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ascii_cmd.c b/src/ascii_cmd.c index a4bed72..84f8ba3 100644 --- a/src/ascii_cmd.c +++ b/src/ascii_cmd.c @@ -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); }