From 858db7081aa05790cdd6afbf0725d91b42586c78 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Thu, 21 Nov 2013 15:14:40 -0500 Subject: [PATCH] background-group: Fix cast warning --- src/compositor/meta-background-group.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compositor/meta-background-group.c b/src/compositor/meta-background-group.c index 3d680de1b..092dd1889 100644 --- a/src/compositor/meta-background-group.c +++ b/src/compositor/meta-background-group.c @@ -46,7 +46,7 @@ meta_background_group_set_clip_region (MetaBackgroundGroup *self, cairo_region_t *region) { ClutterActor *child; - for (child = clutter_actor_get_first_child (self); + for (child = clutter_actor_get_first_child (CLUTTER_ACTOR (self)); child != NULL; child = clutter_actor_get_next_sibling (child)) {