From f92e0bec0bf831e3efa7eddbd1be4bf469a0b7cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Dre=C3=9Fler?= Date: Wed, 11 Sep 2019 12:29:36 +0200 Subject: [PATCH] clutter/actor: Fix a wrong comment According to the definition of ClutterAnimationInfo in clutter-actor-private.h, `transitions` is the third variable of the struct, not the first one. https://gitlab.gnome.org/GNOME/mutter/merge_requests/791 --- clutter/clutter/clutter-actor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clutter/clutter/clutter-actor.c b/clutter/clutter/clutter-actor.c index 68c648fd5..bbfc43721 100644 --- a/clutter/clutter/clutter-actor.c +++ b/clutter/clutter/clutter-actor.c @@ -19410,9 +19410,9 @@ clutter_actor_iter_destroy (ClutterActorIter *iter) } static const ClutterAnimationInfo default_animation_info = { - NULL, /* transitions */ NULL, /* states */ NULL, /* cur_state */ + NULL, /* transitions */ }; static void