diff --git a/src/tools/checkstyle/checkstyle.py b/src/tools/checkstyle/checkstyle.py index c9021e33cf..be558ff00e 100755 --- a/src/tools/checkstyle/checkstyle.py +++ b/src/tools/checkstyle/checkstyle.py @@ -54,7 +54,7 @@ def visit(result, dir, names): cppRules = {} -cppRules["Line over 80 char"] = re.compile('[^\n]{81,}') +cppRules["Line over 100 char"] = re.compile('[^\n]{101,}') cppRules["Spaces instead of tabs"] = re.compile(' ') cppRules["Missing space after control statement"] \ = re.compile('(for|if|while|switch)\(')