From: John Törnblom Date: Sun, 4 Nov 2012 19:05:40 +0000 (+0100) Subject: fixed a minor typo (mostly cosmetics) X-Git-Tag: v3.5~295 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=43d0814745a52f18061525ad9a28ae9d83fc121e;p=thirdparty%2Ftvheadend.git fixed a minor typo (mostly cosmetics) --- diff --git a/src/muxer_pass.c b/src/muxer_pass.c index 965f130cc..299506d8d 100644 --- a/src/muxer_pass.c +++ b/src/muxer_pass.c @@ -223,7 +223,7 @@ pass_muxer_write_ts(muxer_t *m, pktbuf_t *pb) rem = pm->pm_pc % TS_INJECTION_RATE; if(!rem) { pm->pm_pat[3] = (pm->pm_pat[3] & 0xf0) | (pm->pm_ic & 0x0f); - pm->pm_pmt[3] = (pm->pm_pat[3] & 0xf0) | (pm->pm_ic & 0x0f); + pm->pm_pmt[3] = (pm->pm_pmt[3] & 0xf0) | (pm->pm_ic & 0x0f); pass_muxer_write(m, pm->pm_pmt, 188); pass_muxer_write(m, pm->pm_pat, 188); pm->pm_ic++;