From cf9ce8347d28a4eeaca2ffa01670d83e5907207d Mon Sep 17 00:00:00 2001
From: Raphael Isemann <teemperor@gmail.com>
Date: Thu, 3 Aug 2017 15:10:29 +0200
Subject: [PATCH] Added missing newline in error message.

---
 core/clingutils/src/TClingUtils.cxx | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/core/clingutils/src/TClingUtils.cxx b/core/clingutils/src/TClingUtils.cxx
index 7601968ed6e..4a395fa9eef 100644
--- a/core/clingutils/src/TClingUtils.cxx
+++ b/core/clingutils/src/TClingUtils.cxx
@@ -2887,10 +2887,8 @@ clang::QualType ROOT::TMetaUtils::AddDefaultParameters(clang::QualType instanceT
                if (ArgType.getArgument().isNull()
                    || ArgType.getArgument().getKind() != clang::TemplateArgument::Type) {
                   ROOT::TMetaUtils::Error("ROOT::TMetaUtils::AddDefaultParameters",
-                                          "Template parameter substitution failed for %s around %s",
-                                          instanceType.getAsString().c_str(),
-                                          SubTy.getAsString().c_str()
-                                          );
+                                          "Template parameter substitution failed for %s around %s\n",
+                                          instanceType.getAsString().c_str(), SubTy.getAsString().c_str());
                   break;
                }
                clang::QualType BetterSubTy = ArgType.getArgument().getAsType();
-- 
GitLab