summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/disk_buf.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer/disk_buf.c')
-rw-r--r--apps/plugins/mpegplayer/disk_buf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/mpegplayer/disk_buf.c b/apps/plugins/mpegplayer/disk_buf.c
index b78407b9db..50c4222192 100644
--- a/apps/plugins/mpegplayer/disk_buf.c
+++ b/apps/plugins/mpegplayer/disk_buf.c
@@ -108,7 +108,7 @@ static int disk_buf_on_data_notify(struct stream_hdr *sh)
108 return DISK_BUF_NOTIFY_ERROR; 108 return DISK_BUF_NOTIFY_ERROR;
109} 109}
110 110
111static bool check_data_notifies_callback(struct stream_hdr *sh, intptr_t data) 111static bool check_data_notifies_callback(struct stream_hdr *sh, void *data)
112{ 112{
113 if (disk_buf_is_data_ready(sh, 0)) 113 if (disk_buf_is_data_ready(sh, 0))
114 { 114 {
@@ -130,7 +130,7 @@ static inline void check_data_notifies(void)
130{ 130{
131 list_enum_items(nf_list, 131 list_enum_items(nf_list,
132 (list_enum_callback_t)check_data_notifies_callback, 132 (list_enum_callback_t)check_data_notifies_callback,
133 0); 133 NULL);
134} 134}
135 135
136/* Clear all registered notifications - do not post them */ 136/* Clear all registered notifications - do not post them */