aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSergio Martins <smartins@kde.org>2017-10-15 20:27:25 +0100
committerSergio Martins <iamsergio@gmail.com>2017-10-15 20:27:25 +0100
commitfffd420589d987821d31a06ea1483cf7fb8390f2 (patch)
tree7b3fd5dd4cd0d70ab4bedccf9ffb555e25eb4a1e /src
parent92f63820f918b13ee417cedf4c1f81803c35bf92 (diff)
Add missing \n in debug message
Diffstat (limited to 'src')
-rw-r--r--src/QtUtils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/QtUtils.cpp b/src/QtUtils.cpp
index d050e671..96b82abc 100644
--- a/src/QtUtils.cpp
+++ b/src/QtUtils.cpp
@@ -271,7 +271,7 @@ CXXMethodDecl *QtUtils::pmfFromConnect(CallExpr *funcCall, int argIndex)
}
if (argIndex >= numArgs) {
- llvm::errs() << "error, invalid argIndex " << argIndex << " " << numArgs;
+ llvm::errs() << "error, invalid argIndex " << argIndex << " " << numArgs << "\n";
return nullptr;
}