From 021e281c51c04095614fcb5665d01974c01c44bd Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Fri, 21 Feb 2020 14:03:19 -0800 Subject: [PATCH] clutter: fix hole in ClutterPaintNode Fixing the missalignment takes the structure from 80 bytes down to 72. https://gitlab.gnome.org/GNOME/mutter/merge_requests/1081 --- clutter/clutter/clutter-paint-node-private.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clutter/clutter/clutter-paint-node-private.h b/clutter/clutter/clutter-paint-node-private.h index 2c5f1deae..248ed1549 100644 --- a/clutter/clutter/clutter-paint-node-private.h +++ b/clutter/clutter/clutter-paint-node-private.h @@ -49,12 +49,12 @@ struct _ClutterPaintNode ClutterPaintNode *next_sibling; ClutterPaintNode *last_child; - guint n_children; - GArray *operations; gchar *name; + guint n_children; + volatile int ref_count; };