From 97102fa9963ba88f4ab72165a02071990031a73b Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 6 Nov 2012 07:48:52 +1100 Subject: [PATCH] buildtools: Remove extra space from global: line This makes it easier to put the expected values in a file as we will not have trailing whitespace that is against git style. Andrew Bartlett Signed-off-by: Andrew Bartlett Reviewed-by: Jelmer Vernooij Reviewed-by: Andrew Bartlett --- buildtools/wafsamba/samba_abi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildtools/wafsamba/samba_abi.py b/buildtools/wafsamba/samba_abi.py index d3852ea48ba..eb53f8c69fa 100644 --- a/buildtools/wafsamba/samba_abi.py +++ b/buildtools/wafsamba/samba_abi.py @@ -177,7 +177,7 @@ def abi_write_vscript(f, libname, current_version, versions, symmap, abi_match): break f.write("%s {\n" % symver) if k in invmap: - f.write("\tglobal: \n") + f.write("\tglobal:\n") for s in invmap.get(k, []): f.write("\t\t%s;\n" % s); f.write("}%s;\n\n" % last_key) -- 2.11.4.GIT