aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2009-07-21 00:05:10 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2009-07-21 00:05:10 +0000
commitec930d3d816d69d2e8bee857de276e68beda1a07 (patch)
tree1074daa4956ff485a0b761294da724b07fa6c132
parente5af3ce53ec58995b09381ba645ab2117a46647b (diff)
Add '\n' to the end of error message.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76506 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/index-test/index-test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/index-test/index-test.cpp b/tools/index-test/index-test.cpp
index 9f02c2284f..8fd871d08c 100644
--- a/tools/index-test/index-test.cpp
+++ b/tools/index-test/index-test.cpp
@@ -146,7 +146,7 @@ static void ProcessASTLocation(ASTLocation ASTLoc, IndexProvider &IdxProvider) {
Decl *D = ASTLoc.getReferencedDecl();
if (D == 0) {
- llvm::errs() << "Error: Couldn't get a referenced Decl for the ASTLocation";
+ llvm::errs() << "Error: Couldn't get referenced Decl for the ASTLocation\n";
HadErrors = true;
return;
}