0
1
mirror of https://github.com/radio95-rnt/rds95.git synced 2026-02-27 04:43:52 +01:00
This commit is contained in:
2025-03-16 16:20:47 +01:00
parent f1185b6897
commit fef279c3ed
2 changed files with 2 additions and 2 deletions

View File

@@ -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;
}

View File

@@ -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) {