summary refs log tree commit diff
path: root/src/core/nm-dbus-utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/nm-dbus-utils.c')
-rw-r--r--src/core/nm-dbus-utils.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/core/nm-dbus-utils.c b/src/core/nm-dbus-utils.c
index 7f7b9fb9..096b647b 100644
--- a/src/core/nm-dbus-utils.c
+++ b/src/core/nm-dbus-utils.c
@@ -13,8 +13,8 @@
 
 GDBusPropertyInfo *
 nm_dbus_utils_interface_info_lookup_property(const GDBusInterfaceInfo *interface_info,
-                                             const char *              property_name,
-                                             guint *                   property_idx)
+                                             const char               *property_name,
+                                             guint                    *property_idx)
 {
     guint i;
 
@@ -39,7 +39,7 @@ nm_dbus_utils_interface_info_lookup_property(const GDBusInterfaceInfo *interface
 
 GDBusMethodInfo *
 nm_dbus_utils_interface_info_lookup_method(const GDBusInterfaceInfo *interface_info,
-                                           const char *              method_name)
+                                           const char               *method_name)
 {
     guint i;
 
@@ -64,8 +64,8 @@ GVariant *
 nm_dbus_utils_get_property(GObject *obj, const char *signature, const char *property_name)
 {
     nm_auto_unset_gvalue GValue value = G_VALUE_INIT;
-    GParamSpec *                pspec;
-    GVariant *                  variant;
+    GParamSpec                 *pspec;
+    GVariant                   *variant;
 
     nm_assert(G_IS_OBJECT(obj));
     nm_assert(g_variant_type_string_is_valid(signature));
@@ -108,12 +108,12 @@ nm_dbus_utils_g_value_set_object_path_still_exported(GValue *value, gpointer obj
 
 void
 nm_dbus_utils_g_value_set_object_path_from_hash(
-    GValue *    value,
+    GValue     *value,
     GHashTable *hash /* has keys of NMDBusObject type. */,
     gboolean    expect_all_exported)
 {
-    NMDBusObject * obj;
-    char **        strv;
+    NMDBusObject  *obj;
+    char         **strv;
     guint          i, n;
     GHashTableIter iter;
 
@@ -151,7 +151,7 @@ nm_dbus_utils_get_paths_for_clist(const CList *lst_head,
 {
     const CList *iter;
     const char **strv;
-    const char * path;
+    const char  *path;
     gsize        i, n;
 
     nm_assert(lst_head);
@@ -243,7 +243,7 @@ void
 nm_dbus_track_obj_path_set(NMDBusTrackObjPath *track, gpointer obj, gboolean visible)
 {
     gs_unref_object NMDBusObject *old_obj = NULL;
-    const char *                  old_path;
+    const char                   *old_path;
 
     nm_assert(track);
     nm_assert(G_IS_OBJECT(track->_notify_target));