From dd3c66579b196db7b3dc03d3b3159edf5dd0c1d6 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 1 May 2012 13:29:19 +0100 Subject: [PATCH] conform/actor-graph: Add missing NULL terminator --- tests/conform/actor-graph.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/conform/actor-graph.c b/tests/conform/actor-graph.c index 8a4754322..7e4dcd293 100644 --- a/tests/conform/actor-graph.c +++ b/tests/conform/actor-graph.c @@ -220,7 +220,7 @@ actor_raise_child (TestConformSimpleFixture *fixture, ==, "bar"); g_assert (!CLUTTER_ACTOR_IS_VISIBLE (iter)); - g_object_get (iter, "show-on-set-parent", &show_on_set_parent); + g_object_get (iter, "show-on-set-parent", &show_on_set_parent, NULL); g_assert (!show_on_set_parent); iter = clutter_actor_get_child_at_index (actor, 0); @@ -236,7 +236,7 @@ actor_raise_child (TestConformSimpleFixture *fixture, ==, "foo"); g_assert (!CLUTTER_ACTOR_IS_VISIBLE (iter)); - g_object_get (iter, "show-on-set-parent", &show_on_set_parent); + g_object_get (iter, "show-on-set-parent", &show_on_set_parent, NULL); g_assert (!show_on_set_parent); clutter_actor_destroy (actor); @@ -284,7 +284,7 @@ actor_lower_child (TestConformSimpleFixture *fixture, ==, "baz"); g_assert (!CLUTTER_ACTOR_IS_VISIBLE (iter)); - g_object_get (iter, "show-on-set-parent", &show_on_set_parent); + g_object_get (iter, "show-on-set-parent", &show_on_set_parent, NULL); g_assert (!show_on_set_parent); iter = clutter_actor_get_child_at_index (actor, 2); @@ -300,7 +300,7 @@ actor_lower_child (TestConformSimpleFixture *fixture, ==, "foo"); g_assert (!CLUTTER_ACTOR_IS_VISIBLE (iter)); - g_object_get (iter, "show-on-set-parent", &show_on_set_parent); + g_object_get (iter, "show-on-set-parent", &show_on_set_parent, NULL); g_assert (!show_on_set_parent); clutter_actor_destroy (actor);