From b7c97d8e87449529a10d7c03af144676cb653fe1 Mon Sep 17 00:00:00 2001 From: Justin Kim Date: Fri, 2 Oct 2015 16:49:31 +0200 Subject: [PATCH] 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 --- plugins/nle/nlecomposition.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/nle/nlecomposition.c b/plugins/nle/nlecomposition.c index e204501..08d28ae 100644 --- a/plugins/nle/nlecomposition.c +++ b/plugins/nle/nlecomposition.c @@ -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; -- 2.7.4