Browse Source

lindent: function return type on separate line

lindent looks good but I think there's value in the original function declaration style
so I have restored it:

int
main(int argc, char **argv)
{

rather than

int main(int argc, char **argv)

Change-Id: I5dd6d7950186c340eeee3f211d75aceb839c63f8
John Floren 8 years ago
parent
commit
f68daddcfd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      util/lindent

+ 1 - 1
util/lindent

@@ -1,5 +1,5 @@
 #!/bin/sh
-PARAM="-npro -kr -i4 -ts4 -sob -l80 -ss -ncs -cp1 -cli4 -c0"
+PARAM="-npro -kr -psl -i4 -ts4 -sob -l80 -ss -ncs -cp1 -cli4 -c0"
 RES=`indent --version`
 V1=`echo $RES | cut -d' ' -f3 | cut -d'.' -f1`
 V2=`echo $RES | cut -d' ' -f3 | cut -d'.' -f2`