Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
linuxdvb - ca: attempt to fix compilation
  • Loading branch information
perexg committed Jun 19, 2015
1 parent b5a4e1f commit df3cc7e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/input/mpegts/linuxdvb/linuxdvb_adapter.c
Expand Up @@ -65,7 +65,7 @@ linuxdvb_adapter_class_get_childs ( idnode_t *in )
idnode_set_add(is, &lfe->ti_id, NULL, NULL);
#if ENABLE_LINUXDVB_CA
LIST_FOREACH(lca, &la->la_ca_devices, lca_link)
idnode_set_add(is, &lca->lca_id, NULL);
idnode_set_add(is, &lca->lca_id, NULL, NULL);
#endif
return is;
}
Expand Down
6 changes: 3 additions & 3 deletions src/input/mpegts/linuxdvb/linuxdvb_ca.c
Expand Up @@ -122,7 +122,7 @@ linuxdvb_ca_class_save ( idnode_t *in )
}

static void
linuxdvb_ca_class_enabled_notify ( void *p )
linuxdvb_ca_class_enabled_notify ( void *p, const char *lang )
{
linuxdvb_ca_t *lca = (linuxdvb_ca_t *) p;

Expand Down Expand Up @@ -160,7 +160,7 @@ linuxdvb_ca_class_high_bitrate_notify ( void *p )
}

static const char *
linuxdvb_ca_class_get_title ( idnode_t *in )
linuxdvb_ca_class_get_title ( idnode_t *in, const char *lang )
{
linuxdvb_ca_t *lca = (linuxdvb_ca_t *) in;
static char buf[256];
Expand All @@ -180,7 +180,7 @@ const idclass_t linuxdvb_ca_class =
.ic_class = "linuxdvb_ca",
.ic_caption = N_("Linux DVB CA"),
.ic_save = linuxdvb_ca_class_save,
.ic_get_title = linuxdvb_ca_class_get_title,
.ic_get_title = linuxdvb_ca_class_get_title,
.ic_properties = (const property_t[]) {
{
.type = PT_BOOL,
Expand Down

0 comments on commit df3cc7e

Please sign in to comment.