Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
linuxdvb - ca: attempt to fix compilation - idnode_notify_title_chang…
…ed, fixes #2955
  • Loading branch information
perexg committed Jun 20, 2015
1 parent df3cc7e commit f66b731
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/input/mpegts/linuxdvb/linuxdvb_ca.c
Expand Up @@ -146,7 +146,7 @@ linuxdvb_ca_class_enabled_notify ( void *p, const char *lang )
close(lca->lca_ca_fd);
lca->lca_ca_fd = -1;

idnode_notify_title_changed(&lca->lca_id);
idnode_notify_title_changed(&lca->lca_id, lang);
}
}

Expand Down Expand Up @@ -471,7 +471,7 @@ linuxdvb_ca_ai_callback(void *arg, uint8_t slot_id, uint16_t session_num,
snprintf(lca->lca_cam_menu_string, sizeof(lca->lca_cam_menu_string),
"%.*s", menu_string_len, menu_string);

idnode_notify_title_changed(&lca->lca_id);
idnode_notify_title_changed(&lca->lca_id, NULL);

return 0;
}
Expand Down Expand Up @@ -736,7 +736,7 @@ linuxdvb_ca_monitor ( void *aux )
if (lca->lca_state != state) {
tvhlog(LOG_INFO, "linuxdvb", "CAM slot %u status changed to %s",
csi.num, lca->lca_state_str);
idnode_notify_title_changed(&lca->lca_id);
idnode_notify_title_changed(&lca->lca_id, NULL);
lca->lca_state = state;
}

Expand Down

0 comments on commit f66b731

Please sign in to comment.