Skip to content

Commit

Permalink
buildtools: Remove extra space from global: line
Browse files Browse the repository at this point in the history
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 <[email protected]>
Reviewed-by: Jelmer Vernooij <[email protected]>

Reviewed-by: Andrew Bartlett <[email protected]>
  • Loading branch information
abartlet committed Nov 5, 2012
1 parent ea5ef95 commit 97102fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildtools/wafsamba/samba_abi.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 97102fa

Please sign in to comment.