Fix printing error in epggrab.

This commit is contained in:
Adam Sutton 2012-10-09 10:01:46 +01:00
parent 9f07d4f3c9
commit 7e71efaeef

View file

@ -287,7 +287,7 @@ char *epggrab_module_grab_spawn ( void *m )
/* Grab */ /* Grab */
outlen = spawn_and_store_stdout(mod->path, NULL, &outbuf); outlen = spawn_and_store_stdout(mod->path, NULL, &outbuf);
if ( outlen < 1 ) { if ( outlen < 1 ) {
tvhlog(LOG_ERR, "pyepg", "no output detected"); tvhlog(LOG_ERR, mod->id, "no output detected");
return NULL; return NULL;
} }
@ -300,13 +300,14 @@ htsmsg_t *epggrab_module_trans_xml ( void *m, char *c )
{ {
htsmsg_t *ret; htsmsg_t *ret;
char errbuf[100]; char errbuf[100];
epggrab_module_t *mod = m;
if (!c) return NULL; if (!c) return NULL;
/* Extract */ /* Extract */
ret = htsmsg_xml_deserialize(c, errbuf, sizeof(errbuf)); ret = htsmsg_xml_deserialize(c, errbuf, sizeof(errbuf));
if (!ret) if (!ret)
tvhlog(LOG_ERR, "pyepg", "htsmsg_xml_deserialize error %s", errbuf); tvhlog(LOG_ERR, mod->id, "htsmsg_xml_deserialize error %s", errbuf);
return ret; return ret;
} }