[cfe-commits] r148078 - /cfe/trunk/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp

Anna Zaks ganna at apple.com
Thu Jan 12 16:56:44 PST 2012


Author: zaks
Date: Thu Jan 12 18:56:44 2012
New Revision: 148078

URL: http://llvm.org/viewvc/llvm-project?rev=148078&view=rev
Log:
[analyzer] Fix a typo in a warning message.

Modified:
    cfe/trunk/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp

Modified: cfe/trunk/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp?rev=148078&r1=148077&r2=148078&view=diff
==============================================================================
--- cfe/trunk/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp (original)
+++ cfe/trunk/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp Thu Jan 12 18:56:44 2012
@@ -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;
   }
 





More information about the cfe-commits mailing list