From: Pablo Date: Wed, 27 Mar 2019 23:28:38 +0000 (+0100) Subject: Mux scan: Log correction X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=a433a00802eb7d65868acc47e851fbd6988588b6;p=thirdparty%2Ftvheadend.git Mux scan: Log correction --- diff --git a/src/input/mpegts/mpegts_mux.c b/src/input/mpegts/mpegts_mux.c index b5a313f91..310175fb7 100644 --- a/src/input/mpegts/mpegts_mux.c +++ b/src/input/mpegts/mpegts_mux.c @@ -1132,10 +1132,10 @@ mpegts_mux_scan_done ( mpegts_mux_t *mm, const char *buf, int res ) if (res < 0) { /* is threshold 3 missing tables enough? */ if (incomplete > 0 && total > incomplete && incomplete <= 3) { - tvhinfo(LS_MPEGTS, "%s - scan complete (partial - %d/%d tables)", buf, total, incomplete); + tvhinfo(LS_MPEGTS, "%s - scan complete (partial - %d/%d tables)", buf, incomplete, total); mpegts_network_scan_mux_partial(mm); } else { - tvhwarn(LS_MPEGTS, "%s - scan timed out (%d/%d tables)", buf, total, incomplete); + tvhwarn(LS_MPEGTS, "%s - scan timed out (%d/%d tables)", buf, incomplete, total); mpegts_network_scan_mux_fail(mm); } } else if (res) {