From: Adam Sutton Date: Wed, 11 Jul 2012 14:59:34 +0000 (+0100) Subject: Fix some stupid mistakes in debug. X-Git-Tag: 3.3~219^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=27adcb7984554c8aff50373cfe6092aadefcde6b;p=thirdparty%2Ftvheadend.git Fix some stupid mistakes in debug. --- diff --git a/src/epggrab/module/opentv.c b/src/epggrab/module/opentv.c index 0e09c819a..3430942ea 100644 --- a/src/epggrab/module/opentv.c +++ b/src/epggrab/module/opentv.c @@ -494,11 +494,11 @@ static int _opentv_bat_section // most of the time i = 0x80000000 | (bid << 8) | sec; if (!sta->begbat) { - tvhlog(LOG_DEBUG, "opentv", "begin processing BAT"); + tvhlog(LOG_DEBUG, mod->id, "begin processing BAT"); sta->begbat = i; } else if (sta->begbat == i) { sta->endbat = 1; - tvhlog(LOG_DEBUG, "opentv", "finish processing BAT"); + tvhlog(LOG_DEBUG, mod->id, "finish processing BAT"); return 0; } @@ -597,7 +597,7 @@ static epggrab_ota_mux_t *_opentv_event_callback } /* Mark complete */ - tvhlog(LOG_DEBUG, "opentv", "finish processing events"); + epggrab_ota_complete(ota); return NULL; }