summaryrefslogtreecommitdiff
path: root/tools/cstyle.py
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-05-09 13:42:30 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2015-05-09 13:42:39 -0400
commit8ab0b99bee0688202dbb7e9ce36f82bfc4786a93 (patch)
tree0ad5f442682edd7c57b150256256fb2604c9e4d2 /tools/cstyle.py
parentd6a6444b90576c5d8149c74725eae3f4c7737571 (diff)
fix pasted whitespace
Diffstat (limited to 'tools/cstyle.py')
-rw-r--r--tools/cstyle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/cstyle.py b/tools/cstyle.py
index f78c089724..96c58da284 100644
--- a/tools/cstyle.py
+++ b/tools/cstyle.py
@@ -112,7 +112,7 @@ class CStyleChecker:
self.indent_re = re.compile ("^\s*")
self.last_line_indent = ""
self.last_line_indent_curly = False
- self.re_checks = \
+ self.re_checks = \
[ ( re.compile ("^ "), "leading space as indentation instead of tab - use tabs to indent, spaces to align" )
, ( re.compile ("{[^\s]"), "missing space after open brace" )
, ( re.compile ("[^\s]}"), "missing space before close brace" )