diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-05-14 20:20:46 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-05-14 20:20:46 +0000 |
commit | 48921c8a2e9136d4cacfcfc2757b17be49977a51 (patch) | |
tree | 97b2d3c865a07f4b4361a1c93fb0f09ba0034949 | |
parent | bfd6a3fbc16d39543d7d5a2041e749e8b1276393 (diff) |
Fix variable misspelling.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@51122 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/ccc-analyzer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/ccc-analyzer b/utils/ccc-analyzer index 5cb9151f35..2c1960e7db 100755 --- a/utils/ccc-analyzer +++ b/utils/ccc-analyzer @@ -122,7 +122,7 @@ def inferlanguage(extension): return "objective-c" elif extension == "mi": return "objective-c-cpp-output" - elif extention == "s": + elif extension == "s": return "skip" else: return "unknown" |