buildtools: Remove extra space from global: line
authorAndrew Bartlett <abartlet@samba.org>
Mon, 5 Nov 2012 20:48:52 +0000 (07:48 +1100)
committerAndrew Bartlett <abartlet@samba.org>
Mon, 5 Nov 2012 21:27:44 +0000 (08:27 +1100)
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>
buildtools/wafsamba/samba_abi.py

index d3852ea48bab3a8d00a5429b9790d594e58c8e69..eb53f8c69fac45cd034bc0bedd39386cd47f15c7 100644 (file)
@@ -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)