From: Ian Campbell Date: Tue, 31 Aug 2010 18:15:42 +0000 (+0100) Subject: libxl: correct indentation of _libxl_types.c X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~11560 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a703824d6d6ff5ddf4f3bc57a81a889de0a97d72;p=xen.git libxl: correct indentation of _libxl_types.c Signed-off-by: Ian Campbell Signed-off-by: Ian Jackson --- diff --git a/tools/libxl/gentypes.py b/tools/libxl/gentypes.py index 538a1c3304..20d403079a 100644 --- a/tools/libxl/gentypes.py +++ b/tools/libxl/gentypes.py @@ -159,7 +159,7 @@ if __name__ == '__main__': f.write("void %s(%s *p)\n" % (ty.destructor_fn, ty.typename)) f.write("{\n") f.write(libxl_C_type_destroy(ty, "p", True)) - f.write("\tmemset(p, LIBXL_DTOR_POISON, sizeof(*p));\n") + f.write(" memset(p, LIBXL_DTOR_POISON, sizeof(*p));\n") f.write("}\n") f.write("\n") f.close()