commit | dba241df071c4a15ac97e5cadd2d581998662809 | [log] [tgz] |
---|---|---|
author | Anna Zaks <ganna@apple.com> | Fri Jan 13 00:56:44 2012 +0000 |
committer | Anna Zaks <ganna@apple.com> | Fri Jan 13 00:56:44 2012 +0000 |
tree | e9adedbd91298f6f0631a1891df955f38be709b1 | |
parent | 9baf39df74caa56696b293e763fdd7ef002e51ca [diff] |
[analyzer] Fix a typo in a warning message. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@148078 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp b/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp index 5ae95c6..22fabbf 100644 --- a/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp +++ b/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
@@ -379,7 +379,7 @@ 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; }