This commit is contained in:
Kuba 2023-10-31 13:26:32 +00:00
parent 8fca3424b6
commit 9bf6c53893
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ ResultAndArg poll_control_pipe() {
} else if(fifo[0] == 'R' && fifo[1] == 'D' && fifo[2] == 'S') { } else if(fifo[0] == 'R' && fifo[1] == 'D' && fifo[2] == 'S') {
int rds = ( strcmp(arg, "OFF") == 0 ); int rds = ( strcmp(arg, "OFF") == 0 );
printf("Set RDS to "); printf("Set RDS to ");
if(rds) printf("ON\n"); else printf("OFF\n"); if(rds) printf("OFF\n"); else printf("ON\n");
resarg.res = CONTROL_PIPE_RDS_SET; resarg.res = CONTROL_PIPE_RDS_SET;
resarg.arg = (char)rds; resarg.arg = (char)rds;
} }