[scripts][codestyle] tweak the space codestyle script to use -A2 (java style) braces

Dunno why it got set to -A4 before.
This commit is contained in:
Travis Geiselbrecht
2018-12-16 16:38:34 -08:00
parent 81f50225ac
commit 4f978d8580

View File

@@ -1,3 +1,3 @@
#!/bin/sh
astyle -A4 --align-pointer=name --indent=spaces=4 --indent-switches --keep-one-line-blocks --pad-header --convert-tabs $@
astyle -A2 --align-pointer=name --indent=spaces=4 --indent-switches --keep-one-line-blocks --pad-header --convert-tabs $@