From 2fa8ef9fb9c7fe0cc2d9523eed6c5a3749b05175 Mon Sep 17 00:00:00 2001 From: Beniamino Galvani Date: Fri, 18 Dec 2020 17:20:09 +0100 Subject: [PATCH] ovs: fix indentation Fixes: ec7d8ddb295b ('ovs: fix leaks') --- src/devices/ovs/nm-ovsdb.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/devices/ovs/nm-ovsdb.c b/src/devices/ovs/nm-ovsdb.c index 562cd1d0c7..be089d05a8 100644 --- a/src/devices/ovs/nm-ovsdb.c +++ b/src/devices/ovs/nm-ovsdb.c @@ -1875,8 +1875,7 @@ ovsdb_got_update(NMOvsdb *self, json_t *msg) nm_assert(nm_streq0(ovs_bridge->name, name)); changed = nm_utils_strdup_reset(&ovs_bridge->name, name); - changed = - nm_utils_strdup_reset(&ovs_bridge->connection_uuid, connection_uuid); + changed = nm_utils_strdup_reset(&ovs_bridge->connection_uuid, connection_uuid); if (nm_strv_ptrarray_cmp(ovs_bridge->ports, ports) != 0) { NM_SWAP(&ovs_bridge->ports, &ports); changed = TRUE;