From 1e9699e819a63bc3b67acef6d2830f6aa79b5dc6 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Sun, 13 Apr 2025 15:54:22 +0200 Subject: [PATCH] oops --- src/ascii_cmd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ascii_cmd.c b/src/ascii_cmd.c index 665b7cc..2a737e0 100644 --- a/src/ascii_cmd.c +++ b/src/ascii_cmd.c @@ -89,7 +89,7 @@ static void handle_dpty(char *arg, RDSModulator* mod, char* output) { strcpy(output, "+\0"); } -static void handle_slcdata(char *arg, RDSModulator* mod, char* output) { +static void handle_slcd(char *arg, RDSModulator* mod, char* output) { mod->enc->data[mod->enc->program].slc_data = strtoul(arg, NULL, 16); strcpy(output, "+\0"); } @@ -477,7 +477,7 @@ static const pattern_command_handler_t pattern_commands[] = { {"EON", "TA", handle_eonta}, {"EON", "TP", handle_eontp}, {"EON", "AF", handle_eonaf}, - {"EON", "DT", handle_eondt} + {"EON", "DT", handle_eondt}, {"UDG", "", handle_udg}, };