diff options
Diffstat (limited to 'src/clint.py')
-rwxr-xr-x | src/clint.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clint.py b/src/clint.py index ee2f3cc00f..6e4d419b38 100755 --- a/src/clint.py +++ b/src/clint.py @@ -1090,7 +1090,7 @@ def CheckIncludes(filename, lines, error): return for i, line in enumerate(lines): - matched = Match(r'#\s*include\s*"([^"]*)"$', line) + matched = Match(r'#\s*include\s*"([^"]*)"', line) if matched: name = matched.group(1) if (not name.endswith('.h.generated.h') and |