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:
Justin Kim 2015-10-02 16:49:31 +02:00 committed by Thibault Saunier
parent b9112cac48
commit b7c97d8e87

View file

@ -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;