Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
tvhthread_create requires 5 arguments
fix for this compilation error:
src/input/mpegts/linuxdvb/linuxdvb_ca.c:748:24: error: too few arguments to function ‘tvhthread_create’
  • Loading branch information
skylex authored and perexg committed Oct 18, 2015
1 parent 4f557c7 commit bd0e200
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/linuxdvb/linuxdvb_ca.c
Expand Up @@ -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))
{
Expand Down

0 comments on commit bd0e200

Please sign in to comment.