summaryrefslogtreecommitdiff
path: root/buildtools
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-11-06 07:48:52 +1100
committerKarolin Seeger <kseeger@samba.org>2012-11-09 12:31:52 +0100
commitd280533c2fd3d27ebb15adb35751ae06ce256a42 (patch)
tree9e7f9a3e59a35641d532644dc4ee86940bb1da19 /buildtools
parente443b2d782043de5492a91025ec08a4734f58ed5 (diff)
downloadsamba-d280533c2fd3d27ebb15adb35751ae06ce256a42.tar.gz
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 <abartlet@samba.org> Reviewed-by: Jelmer Vernooij <jelmer@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> (cherry picked from commit 97102fa9963ba88f4ab72165a02071990031a73b)
Diffstat (limited to 'buildtools')
-rw-r--r--buildtools/wafsamba/samba_abi.py2
1 files changed, 1 insertions, 1 deletions
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)