Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
autorec: fix the compilation error (value computed is not used)
  • Loading branch information
perexg committed Sep 8, 2014
1 parent 04e9466 commit 52d34e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dvr/dvr_autorec.c
Expand Up @@ -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);
}
Expand Down

0 comments on commit 52d34e7

Please sign in to comment.