[analyzer] Fix a typo in a warning message.

llvm-svn: 148078
This commit is contained in:
Anna Zaks
2012-01-13 00:56:44 +00:00
parent 9c8456f7ef
commit bdf42b336d

View File

@@ -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;
}