From 2b9462f172f2410b9a24fa06d345126a645b75cd Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 30 Mar 2016 12:00:58 +0200 Subject: [PATCH] exported-object: reorder fields in NMExportedObjectPrivate struct For now, this doesn't change the overall size of the struct. But with the next commits this ordering allows tighter packing. --- src/nm-exported-object.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/nm-exported-object.c b/src/nm-exported-object.c index 38a6271cb7..1518b492bc 100644 --- a/src/nm-exported-object.c +++ b/src/nm-exported-object.c @@ -39,16 +39,17 @@ G_DEFINE_ABSTRACT_TYPE_WITH_CODE (NMExportedObject, nm_exported_object, G_TYPE_D ) typedef struct { - GSList *interfaces; - NMBusManager *bus_mgr; char *path; GHashTable *pending_notifies; + + GSList *interfaces; + guint notify_idle_id; #ifdef _ASSERT_NO_EARLY_EXPORT - gboolean _constructed; + bool _constructed:1; #endif } NMExportedObjectPrivate;