summary refs log tree commit diff
path: root/src/libnm-client-impl/nm-device-tun.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-tun.c
parent88c227d90a6b7b388c5c85d72802a0ca8f05ed5c (diff)
New upstream version 1.35.91 upstream/1.35.91
Diffstat (limited to 'src/libnm-client-impl/nm-device-tun.c')
-rw-r--r--src/libnm-client-impl/nm-device-tun.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libnm-client-impl/nm-device-tun.c b/src/libnm-client-impl/nm-device-tun.c
index 8b8ca0fe..353b4bdc 100644
--- a/src/libnm-client-impl/nm-device-tun.c
+++ b/src/libnm-client-impl/nm-device-tun.c
@@ -24,7 +24,7 @@ NM_GOBJECT_PROPERTIES_DEFINE_BASE(PROP_MODE,
                                   PROP_MULTI_QUEUE, );
 
 typedef struct {
-    char * mode;
+    char  *mode;
     gint64 owner;
     gint64 group;
     bool   no_pi;
@@ -191,7 +191,7 @@ connection_compatible(NMDevice *device, NMConnection *connection, GError **error
 {
     NMDeviceTunPrivate *priv = NM_DEVICE_TUN_GET_PRIVATE(device);
     NMSettingTunMode    mode;
-    NMSettingTun *      s_tun;
+    NMSettingTun       *s_tun;
 
     if (!NM_DEVICE_CLASS(nm_device_tun_parent_class)
              ->connection_compatible(device, connection, error))
@@ -294,7 +294,7 @@ const NMLDBusMetaIface _nml_dbus_meta_iface_nm_device_tun = NML_DBUS_META_IFACE_
 static void
 nm_device_tun_class_init(NMDeviceTunClass *gre_class)
 {
-    GObjectClass * object_class = G_OBJECT_CLASS(gre_class);
+    GObjectClass  *object_class = G_OBJECT_CLASS(gre_class);
     NMDeviceClass *device_class = NM_DEVICE_CLASS(gre_class);
 
     object_class->get_property = get_property;