fix some issues

This commit is contained in:
Andreas Öman 2013-02-07 23:44:14 +01:00
parent a6433e4a37
commit 3f1d299749
2 changed files with 2 additions and 4 deletions

View file

@ -52,7 +52,6 @@ dvb_table_fastswitch(th_dvb_mux_instance_t *tdmi)
th_dvb_table_t *tdt; th_dvb_table_t *tdt;
th_dvb_adapter_t *tda = tdmi->tdmi_adapter; th_dvb_adapter_t *tda = tdmi->tdmi_adapter;
dvb_mux_t *dm = tdmi->tdmi_mux; dvb_mux_t *dm = tdmi->tdmi_mux;
char buf[100];
if(dm->dm_scan_status == DM_SCAN_DONE) if(dm->dm_scan_status == DM_SCAN_DONE)
return; return;
@ -63,9 +62,8 @@ dvb_table_fastswitch(th_dvb_mux_instance_t *tdmi)
dvb_mux_save(dm); dvb_mux_save(dm);
dvb_mux_nicename(buf, sizeof(buf), dm);
tvhlog(LOG_DEBUG, "dvb", "\"%s\" initial scan completed for \"%s\"", tvhlog(LOG_DEBUG, "dvb", "\"%s\" initial scan completed for \"%s\"",
tda->tda_rootpath, buf); tda->tda_rootpath, dvb_mux_nicename(dm));
dvb_mux_initial_scan_done(dm); dvb_mux_initial_scan_done(dm);
} }

View file

@ -52,7 +52,7 @@ typedef struct rawts {
* *
*/ */
static int static int
rawts_service_start(service_t *t, unsigned int weight, int force_start) rawts_service_start(service_t *t, int id)
{ {
return 0; // Always ok return 0; // Always ok
} }