From: Laine Stump Date: Thu, 8 Mar 2012 18:31:06 +0000 (-0500) Subject: util: whitespace change to virNetDevOpenvswitchAddPort X-Git-Tag: v0.9.11-rc1~102 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38e56abb05cd979d775593839fb849c26b74aebb;p=thirdparty%2Flibvirt.git 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.) --- 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; } /**