]> xenbits.xensource.com Git - xen.git/commitdiff
libxc: Replaces tabs with spaces in xc_cpupool_freeinfo
authorKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Thu, 19 Mar 2015 00:24:07 +0000 (20:24 -0400)
committerIan Campbell <ian.campbell@citrix.com>
Fri, 20 Mar 2015 16:04:35 +0000 (16:04 +0000)
The goto looks very wrong when the rest of the code
has spaces.

Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
tools/libxc/xc_cpupool.c

index 6393cfb1c295eddfcf4c40fd438435f58e054605..828f2344cc05aa6c7254131a76ce373315d8903e 100644 (file)
@@ -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);