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
This commit is contained in:
Christian Hergert 2020-02-21 14:03:19 -08:00
parent aedcfcd010
commit 021e281c51

View File

@ -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;
};