diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2008-07-21 13:29:56 +0000 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2008-07-21 13:29:56 +0000 |
commit | 2a0761aecefcaef5de642bd9c89d3abc383daa79 (patch) | |
tree | ab1104c9e8332ffb6e686ae09d0abde8373ba12a /tools | |
parent | 8f50e97a03dd1eb2d0cf6eae4297a12d75308f96 (diff) |
Remove tab in check-c-style.sh
Diffstat (limited to 'tools')
-rw-r--r-- | tools/check-c-style.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/check-c-style.sh b/tools/check-c-style.sh index 6ed106cf6..dd62fb7ba 100644 --- a/tools/check-c-style.sh +++ b/tools/check-c-style.sh @@ -38,7 +38,7 @@ if grep -En '[(][[:alnum:]_]+\*+[)]' "$@"; then fi # ... and this only spots variable declarations and function return types if grep -En '^ *(static |const |)* *[[:alnum:]_]+\*+([[:alnum:]_]|;|$)' \ - "$@"; then + "$@"; then echo "^^^ Our coding style is to have a space before the * of pointer types" echo " (regex 2)" fail=1 |