Fix a typo in syslog format

This commit is contained in:
Andreas Öman 2007-08-17 06:33:03 +00:00
parent a0c8b578a0
commit c5d551bd21

4
epg.c
View file

@ -351,10 +351,10 @@ epg_update_event_by_id(th_channel_t *ch, uint16_t event_id,
event_time_txt(e->e_start, e->e_duration, before, sizeof(before));
event_time_txt(start, duration, after, sizeof(after));
syslog(LOG_DEBUG, "\"%s\": \"%s\" (serviceid = 0x04x) "
syslog(LOG_DEBUG, "\"%s\": \"%s\" (serviceid = 0x%04x) "
"%s changed duration to %s",
ch->ch_name, e->e_title ?: "<unnamed>",
before, after);
e->e_event_id, before, after);
TAILQ_REMOVE(&ch->ch_epg_events, e, e_link);