diff options
Diffstat (limited to 'pre-commit')
-rwxr-xr-x | pre-commit | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pre-commit b/pre-commit index 2fc554236..da86ca59c 100755 --- a/pre-commit +++ b/pre-commit @@ -1,8 +1,8 @@ #!/bin/sh find src/ -name "*.c" -exec indent {} \; -find src/ -name "*.c" -exec indent {} \; +find src/ -name "*.h" -exec indent {} \; if test -x "`which 'dos2unix'`" then find src/ -name "*.c" -exec dos2unix {} \; - find src/ -name "*.c" -exec dos2unix {} \; + find src/ -name "*.h" -exec dos2unix {} \; fi |