aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxl/gentypes.py
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2010-08-31 19:15:42 +0100
committerIan Campbell <ian.campbell@citrix.com>2010-08-31 19:15:42 +0100
commita703824d6d6ff5ddf4f3bc57a81a889de0a97d72 (patch)
tree12c2ade05be3817cd91dbd06d2eda92a7abcd2fe /tools/libxl/gentypes.py
parentb89c3d320f3e21c46e28d127ffb120210a36bd77 (diff)
downloadxen-a703824d6d6ff5ddf4f3bc57a81a889de0a97d72.tar.gz
xen-a703824d6d6ff5ddf4f3bc57a81a889de0a97d72.tar.bz2
xen-a703824d6d6ff5ddf4f3bc57a81a889de0a97d72.zip
libxl: correct indentation of _libxl_types.c
Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
Diffstat (limited to 'tools/libxl/gentypes.py')
-rw-r--r--tools/libxl/gentypes.py2
1 files changed, 1 insertions, 1 deletions
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()