From: Konrad Rzeszutek Wilk Date: Thu, 19 Mar 2015 00:24:07 +0000 (-0400) Subject: libxc: Replaces tabs with spaces in xc_cpupool_freeinfo X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~3559 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ce156118ae8bd72e9b77b8336ea6819049390c65;p=xen.git libxc: Replaces tabs with spaces in xc_cpupool_freeinfo The goto looks very wrong when the rest of the code has spaces. Signed-off-by: Konrad Rzeszutek Wilk Acked-by: Ian Campbell --- diff --git a/tools/libxc/xc_cpupool.c b/tools/libxc/xc_cpupool.c index 6393cfb1c2..828f2344cc 100644 --- a/tools/libxc/xc_cpupool.c +++ b/tools/libxc/xc_cpupool.c @@ -190,11 +190,11 @@ xc_cpumap_t xc_cpupool_freeinfo(xc_interface *xch) err = do_sysctl_save(xch, &sysctl); if ( err < 0 ) - goto out; + goto out; cpumap = xc_cpumap_alloc(xch); if (cpumap == NULL) - goto out; + goto out; memcpy(cpumap, local, mapsize);