]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
autorec: fix the compilation error (value computed is not used)
authorJaroslav Kysela <perex@perex.cz>
Mon, 8 Sep 2014 15:35:33 +0000 (17:35 +0200)
committerJaroslav Kysela <perex@perex.cz>
Mon, 8 Sep 2014 15:35:33 +0000 (17:35 +0200)
src/dvr/dvr_autorec.c

index c259cfa126bde047c548dd0b94f46d233186131e..aba964076122514680c0fa5aedee9e6b66126b56 100644 (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);
   }