mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 22:16:22 +00:00
nlecomposition: fix wrong argument order of GClosureNotify
Summary: _free_action should follow GClosureNotify type. ``` void (*GClosureNotify) (gpointer data, GClosure *closure); ``` Reviewers: thiblahute Projects: #gstreamer_editing_services Reviewed By: thiblahute Differential Revision: https://phabricator.freedesktop.org/D323
This commit is contained in:
parent
b9112cac48
commit
b7c97d8e87
1 changed files with 1 additions and 1 deletions
|
@ -737,7 +737,7 @@ _add_add_object_action (NleComposition * comp, NleObject * object)
|
|||
}
|
||||
|
||||
static void
|
||||
_free_action (Action * action, gpointer udata)
|
||||
_free_action (gpointer udata, Action * action)
|
||||
{
|
||||
if (ACTION_CALLBACK (action) == _seek_pipeline_func) {
|
||||
SeekData *seekd = (SeekData *) udata;
|
||||
|
|
Loading…
Reference in a new issue