From 661355777a841e000f5bba801869ef434e884570 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Thu, 2 Oct 2008 17:08:27 +0000 Subject: [PATCH] Cosmetics --- epg.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/epg.c b/epg.c index 94f478a5..f683f9ab 100644 --- a/epg.c +++ b/epg.c @@ -53,20 +53,15 @@ e_ch_cmp(const event_t *a, const event_t *b) static void epg_set_current(channel_t *ch, event_t *e) { - printf("Channel %s, event = %s\n", ch->ch_name, e ? e->e_title : "none"); - if(ch->ch_epg_current == e) return; - ch->ch_epg_current = e; if(e != NULL) { gtimer_arm_abs(&ch->ch_epg_timer_current, epg_ch_check_current_event, ch, MAX(e->e_stop, dispatch_clock + 1)); dvr_autorec_check(e); - } - - + } htsp_event_update(ch, e); }