about summary refs log tree commit diff
path: root/libnm-core/nm-dbus-utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'libnm-core/nm-dbus-utils.c')
-rw-r--r--libnm-core/nm-dbus-utils.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/libnm-core/nm-dbus-utils.c b/libnm-core/nm-dbus-utils.c
index ea7bf783..79020b2d 100644
--- a/libnm-core/nm-dbus-utils.c
+++ b/libnm-core/nm-dbus-utils.c
@@ -176,13 +176,11 @@ _nm_dbus_signal_connect_data (GDBusProxy *proxy,
 
 
 static void
-typecheck_response (GVariant **response,
-                    const GVariantType *reply_type,
-                    GError **error)
+typecheck_response (GVariant           **response,
+                    const GVariantType  *reply_type,
+                    GError             **error)
 {
-	if (   *response
-	    && reply_type
-	    && !g_variant_is_of_type (*response, reply_type)) {
+	if (*response && reply_type && !g_variant_is_of_type (*response, reply_type)) {
 		/* This is the same error code that g_dbus_connection_call() returns if
 		 * @reply_type doesn't match.
 		 */