0
1
mirror of https://github.com/radio95-rnt/rds95.git synced 2026-02-27 12:53:53 +01:00
This commit is contained in:
2025-03-11 15:48:29 +01:00
parent 7e24e9ce0a
commit 8512d777eb

View File

@@ -191,7 +191,7 @@ int main(int argc, char **argv) {
if (open_control_pipe(control_pipe) == 0) { if (open_control_pipe(control_pipe) == 0) {
fprintf(stderr, "Reading control commands on %s.\n", control_pipe); fprintf(stderr, "Reading control commands on %s.\n", control_pipe);
/* Create control pipe polling worker */ /* Create control pipe polling worker */
uint8_t r; int r;
r = pthread_create(&control_pipe_thread, &attr, control_pipe_worker, NULL); r = pthread_create(&control_pipe_thread, &attr, control_pipe_worker, NULL);
if (r < 0) { if (r < 0) {
fprintf(stderr, "Could not create control pipe thread.\n"); fprintf(stderr, "Could not create control pipe thread.\n");