diff options
| author | Anna Zaks <ganna@apple.com> | 2012-01-13 00:56:44 +0000 |
|---|---|---|
| committer | Anna Zaks <ganna@apple.com> | 2012-01-13 00:56:44 +0000 |
| commit | bdf42b336d9df44c51a1377c585730e46fbc0e5c (patch) | |
| tree | 2107a0d48dd71eb35232f1cdd9b39b19044662fb /clang/lib/StaticAnalyzer | |
| parent | 9c8456f7efbd8d7295b9553f9f27e4e59f9ff3c1 (diff) | |
| download | bcm5719-llvm-bdf42b336d9df44c51a1377c585730e46fbc0e5c.tar.gz bcm5719-llvm-bdf42b336d9df44c51a1377c585730e46fbc0e5c.zip | |
[analyzer] Fix a typo in a warning message.
llvm-svn: 148078
Diffstat (limited to 'clang/lib/StaticAnalyzer')
| -rw-r--r-- | clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp b/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp index 5ae95c61f81..22fabbf7ae7 100644 --- a/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp +++ b/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp @@ -379,7 +379,7 @@ void PlistDiagnostics::FlushDiagnostics(SmallVectorImpl<std::string> std::string ErrMsg; llvm::raw_fd_ostream o(OutputFile.c_str(), ErrMsg); if (!ErrMsg.empty()) { - llvm::errs() << "warning: could not creat file: " << OutputFile << '\n'; + llvm::errs() << "warning: could not create file: " << OutputFile << '\n'; return; } |

