From: Jaroslav Kysela Date: Mon, 8 Sep 2014 15:35:33 +0000 (+0200) Subject: autorec: fix the compilation error (value computed is not used) X-Git-Tag: v4.1~1435 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=52d34e7c263ed4ff9707ca2fc74f35e7ff1a51b5;p=thirdparty%2Ftvheadend.git autorec: fix the compilation error (value computed is not used) --- diff --git a/src/dvr/dvr_autorec.c b/src/dvr/dvr_autorec.c index c259cfa12..aba964076 100644 --- a/src/dvr/dvr_autorec.c +++ b/src/dvr/dvr_autorec.c @@ -833,7 +833,7 @@ dvr_autorec_init(void) HTSMSG_FOREACH(f, l) { if((c = htsmsg_get_map_by_field(f)) == NULL) continue; - (void *)dvr_autorec_create(f->hmf_name, c); + (void)dvr_autorec_create(f->hmf_name, c); } htsmsg_destroy(l); }