From: E.Smith <31170571+azlm8t@users.noreply.github.com> Date: Tue, 21 Nov 2017 11:03:13 +0000 (+0000) Subject: xmltv: Use epggrab_module_int_t instead of ext_t. (#3753). X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=67187b49f811d988136b40161ef566f554aa2fea;p=thirdparty%2Ftvheadend.git xmltv: Use epggrab_module_int_t instead of ext_t. (#3753). The epggrab_module_ext_t derives from the epggrab_module_int_t so we should really use the epggrab_module_int_t to make it clearer that the fields are in the base class. Issue: #3753. --- diff --git a/src/epggrab/module/xmltv.c b/src/epggrab/module/xmltv.c index ff421dd36..f2b17aaa6 100644 --- a/src/epggrab/module/xmltv.c +++ b/src/epggrab/module/xmltv.c @@ -605,8 +605,8 @@ static int _xmltv_parse_programme_tags time_t start, time_t stop, const char *icon, epggrab_stats_t *stats) { - const int scrape_extra = ((epggrab_module_ext_t *)mod)->xmltv_scrape_extra; - const int scrape_onto_desc = ((epggrab_module_ext_t *)mod)->xmltv_scrape_onto_desc; + const int scrape_extra = ((epggrab_module_int_t *)mod)->xmltv_scrape_extra; + const int scrape_onto_desc = ((epggrab_module_int_t *)mod)->xmltv_scrape_onto_desc; const int use_category_not_genre = ((epggrab_module_int_t *)mod)->xmltv_use_category_not_genre; int save = 0, save2 = 0, save3 = 0; epg_episode_t *ee = NULL;