]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
linuxdvb: fix typo in PILOT translation table def
authorAdam Sutton <dev@adamsutton.me.uk>
Tue, 14 Jul 2015 20:09:59 +0000 (21:09 +0100)
committerJaroslav Kysela <perex@perex.cz>
Tue, 28 Jul 2015 14:37:38 +0000 (16:37 +0200)
This results in tuning failures as PILOT_NONE maps to -1, which is
rejected by (some?) drivers.

src/input/mpegts/linuxdvb/linuxdvb_frontend.c

index e021c369bb01532df30296ee153314bcf3f05aa2..59fb1736ce777da75faec0be21d0d64ebef61e4b 100644 (file)
@@ -1274,7 +1274,7 @@ linuxdvb_frontend_tune0
     { .t = DVB_PILOT_AUTO,              .l = PILOT_AUTO },
     { .t = DVB_PILOT_ON,                .l = PILOT_ON   },
     { .t = DVB_PILOT_OFF,               .l = PILOT_OFF  },
-    { .l = TABLE_EOD }
+    { .t = TABLE_EOD }
   };
   static linuxdvb_tbl_t rolloff_tbl[] = {
     { .t = DVB_HIERARCHY_AUTO,          .l = ROLLOFF_AUTO },