Index: tools/checkdeps/cpp_checker.py |
diff --git a/tools/checkdeps/cpp_checker.py b/tools/checkdeps/cpp_checker.py |
index 9bcd14d75ccf0d68f39a7f0dac9a798ee7bdc3e5..94fd37a92145a7e3b0c829c303680dfff500363c 100644 |
--- a/tools/checkdeps/cpp_checker.py |
+++ b/tools/checkdeps/cpp_checker.py |
@@ -62,7 +62,7 @@ class CppChecker(object): |
# Don't fail when no directory is specified. We may want to be more |
# strict about this in the future. |
if self._verbose: |
- print ' WARNING: directory specified with no path: ' + include_path |
+ print ' WARNING: include specified with no directory: ' + include_path |
return True, None |
rule = rules.RuleApplyingTo(include_path, dependee_path) |
@@ -86,7 +86,7 @@ class CppChecker(object): |
line = line.strip() |
- # Check to see if we're at / inside a #if 0 block |
+ # Check to see if we're at / inside an #if 0 block |
if line.startswith('#if 0'): |
in_if0 += 1 |
continue |