From 38e56abb05cd979d775593839fb849c26b74aebb Mon Sep 17 00:00:00 2001 From: Laine Stump Date: Thu, 8 Mar 2012 13:31:06 -0500 Subject: [PATCH] util: whitespace change to virNetDevOpenvswitchAddPort The indentation on the final lines of the function was off by four spaces, making me wonder for a second if there was something missing. (There wasn't.) --- src/util/virnetdevopenvswitch.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/util/virnetdevopenvswitch.c b/src/util/virnetdevopenvswitch.c index e427c9480b..9d6d924ac7 100644 --- a/src/util/virnetdevopenvswitch.c +++ b/src/util/virnetdevopenvswitch.c @@ -95,14 +95,14 @@ int virNetDevOpenvswitchAddPort(const char *brname, const char *ifname, ifname, brname); goto cleanup; } - ret = 0; - cleanup: - VIR_FREE(attachedmac_ex_id); - VIR_FREE(ifaceid_ex_id); - VIR_FREE(profile_ex_id); - virCommandFree(cmd); - return ret; + ret = 0; +cleanup: + VIR_FREE(attachedmac_ex_id); + VIR_FREE(ifaceid_ex_id); + VIR_FREE(profile_ex_id); + virCommandFree(cmd); + return ret; } /**