From fef279c3ed96b83e832721fe80ed72c2a0efe0ab Mon Sep 17 00:00:00 2001 From: kuba Date: Sun, 16 Mar 2025 16:20:47 +0100 Subject: [PATCH] wow --- src/ascii_cmd.c | 2 +- src/rds95.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ascii_cmd.c b/src/ascii_cmd.c index 0b0642e..02c6d6f 100644 --- a/src/ascii_cmd.c +++ b/src/ascii_cmd.c @@ -364,7 +364,7 @@ static const command_handler_t commands_exact[] = { static bool process_command_table(const command_handler_t *table, int table_size, char *cmd, char *arg, RDSModulator* mod) { for (int i = 0; i < table_size; i++) { - if (ustrcmp(cmd, (char *)table[i].cmd) == 0) { + if (strcmp(cmd, (char *)table[i].cmd) == 0) { table[i].handler(arg, mod); return true; } diff --git a/src/rds95.c b/src/rds95.c index 2b64ba4..3cc015b 100644 --- a/src/rds95.c +++ b/src/rds95.c @@ -32,7 +32,7 @@ static void *control_pipe_worker(void* modulator) { } static void show_version() { - printf("rds95 (a RDS encoder by radio95) version 1.0"); + printf("rds95 (a RDS encoder by radio95) version 1.0\n"); } static void show_help(char *name) {