summary refs log tree commit diff
path: root/src/libnm-client-impl/nm-device-bt.c
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2022-02-14 19:23:28 +0100
committerMichael Biebl <biebl@debian.org>2022-02-14 19:23:28 +0100
commit2f94dba7385fd0e0ef19a06eb4a2fcf6c43d7946 (patch)
treee2222f5577115985dd52044d2991253403cdd952 /src/libnm-client-impl/nm-device-bt.c
parent88c227d90a6b7b388c5c85d72802a0ca8f05ed5c (diff)
New upstream version 1.35.91 upstream/1.35.91
Diffstat (limited to 'src/libnm-client-impl/nm-device-bt.c')
-rw-r--r--src/libnm-client-impl/nm-device-bt.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libnm-client-impl/nm-device-bt.c b/src/libnm-client-impl/nm-device-bt.c
index 074ada66..b006cec4 100644
--- a/src/libnm-client-impl/nm-device-bt.c
+++ b/src/libnm-client-impl/nm-device-bt.c
@@ -21,7 +21,7 @@
 NM_GOBJECT_PROPERTIES_DEFINE_BASE(PROP_NAME, PROP_BT_CAPABILITIES, );
 
 typedef struct {
-    char *  name;
+    char   *name;
     guint32 bt_capabilities;
 } NMDeviceBtPrivate;
 
@@ -96,7 +96,7 @@ static NMBluetoothCapabilities
 get_connection_bt_type(NMConnection *connection)
 {
     NMSettingBluetooth *s_bt;
-    const char *        bt_type;
+    const char         *bt_type;
 
     s_bt = nm_connection_get_setting_bluetooth(connection);
     if (!s_bt)
@@ -116,8 +116,8 @@ get_connection_bt_type(NMConnection *connection)
 static gboolean
 connection_compatible(NMDevice *device, NMConnection *connection, GError **error)
 {
-    NMSettingBluetooth *    s_bt;
-    const char *            hw_addr, *setting_addr;
+    NMSettingBluetooth     *s_bt;
+    const char             *hw_addr, *setting_addr;
     NMBluetoothCapabilities dev_caps;
     NMBluetoothCapabilities bt_type;
 
@@ -235,7 +235,7 @@ const NMLDBusMetaIface _nml_dbus_meta_iface_nm_device_bluetooth = NML_DBUS_META_
 static void
 nm_device_bt_class_init(NMDeviceBtClass *bt_class)
 {
-    GObjectClass * object_class = G_OBJECT_CLASS(bt_class);
+    GObjectClass  *object_class = G_OBJECT_CLASS(bt_class);
     NMDeviceClass *device_class = NM_DEVICE_CLASS(bt_class);
 
     object_class->get_property = get_property;