diff --git a/glib/garray.c b/glib/garray.c index 4419c62e1..82b17503a 100644 --- a/glib/garray.c +++ b/glib/garray.c @@ -1072,7 +1072,7 @@ struct _GRealPtrArray guint len; guint alloc; gatomicrefcount ref_count; - guint8 null_terminated; /* always either 0 or 1, so it can be added to array lengths */ + guint8 null_terminated : 1; /* always either 0 or 1, so it can be added to array lengths */ GDestroyNotify element_free_func; };