autorec: fix the compilation error (value computed is not used)

This commit is contained in:
Jaroslav Kysela 2014-09-08 17:35:33 +02:00
parent 04e9466164
commit 52d34e7c26

View file

@ -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);
}