Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
linuxdvb: don't print 'c' characters to stdout
  • Loading branch information
perexg committed May 27, 2015
1 parent 7478260 commit 54c26b6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/input/mpegts/linuxdvb/linuxdvb_frontend.c
Expand Up @@ -382,7 +382,8 @@ linuxdvb_frontend_update_pids
}
pthread_mutex_unlock(&lfe->lfe_dvr_lock);

tvh_write(lfe->lfe_dvr_pipe.wr, "c", 1);
if (lfe->lfe_dvr_pipe.wr > 0)
tvh_write(lfe->lfe_dvr_pipe.wr, "c", 1);
}

static idnode_set_t *
Expand Down

0 comments on commit 54c26b6

Please sign in to comment.