]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
tvhthread_create requires 5 arguments
authorAlexandre B <alexb38@gmail.com>
Sun, 18 Oct 2015 00:02:57 +0000 (02:02 +0200)
committerJaroslav Kysela <perex@perex.cz>
Sun, 18 Oct 2015 08:54:36 +0000 (10:54 +0200)
fix for this compilation error:
src/input/mpegts/linuxdvb/linuxdvb_ca.c:748:24: error: too few arguments to function ‘tvhthread_create’

src/input/mpegts/linuxdvb/linuxdvb_ca.c

index 5d364871a2999fec953e876c446af6a9c9cfe414..801abed6def9cb56f0a6e23a308c3277e391ce9a 100644 (file)
@@ -745,7 +745,7 @@ linuxdvb_ca_monitor ( void *aux )
     {
       lca->lca_en50221_thread_running = 1;
       tvhthread_create(&lca->lca_en50221_thread, NULL,
-                       linuxdvb_ca_en50221_thread, lca);
+                       linuxdvb_ca_en50221_thread, lca, "lnxdvb-ca");
     } else if (lca->lca_en50221_thread_running &&
                (state != CA_SLOT_STATE_MODULE_READY))
     {