Skip to content

Commit

Permalink
Fix macOS CI build failure
Browse files Browse the repository at this point in the history
  • Loading branch information
nurupo committed Jan 28, 2025
1 parent d22794e commit c943c37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pause_click.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ vlc_module_begin()
// 6f68f894986e11e3f6215f6c2c25e5c0a3139429
// 94e23d51bb91cff1c14ef1079193920f04f48fd1
#if LIBVLC_VERSION_MAJOR >= 4
set_callback_video_filter(OpenFilter)
set_callback_video_filter((vlc_filter_open) OpenFilter)
#else
set_category(CAT_VIDEO)
set_callbacks(OpenFilter, CloseFilter)
Expand Down Expand Up @@ -583,7 +583,7 @@ static const struct vlc_filter_operations filter_ops =
{
.filter_video = filter,
.video_mouse = _mouse,
.close = CloseFilter,
.close = ((*)(filter_t *)) CloseFilter,
};
#endif

Expand Down

0 comments on commit c943c37

Please sign in to comment.