diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-11-06 07:48:52 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-11-06 08:27:44 +1100 |
commit | 97102fa9963ba88f4ab72165a02071990031a73b (patch) | |
tree | 66b415b3cb19f86c6d29e5d8b2899b3ad08f28f1 /buildtools | |
parent | ea5ef95fbebe28cca11f86a9015aab77522f5e18 (diff) | |
download | samba-97102fa9963ba88f4ab72165a02071990031a73b.tar.gz samba-97102fa9963ba88f4ab72165a02071990031a73b.tar.bz2 samba-97102fa9963ba88f4ab72165a02071990031a73b.zip |
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>
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/wafsamba/samba_abi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_abi.py b/buildtools/wafsamba/samba_abi.py index d3852ea48b..eb53f8c69f 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) |