From 88b4e7600d5c1e0e5e5d2f8aa3b56be278e63917 Mon Sep 17 00:00:00 2001 From: Andreas Suter Date: Thu, 18 Feb 2021 11:55:34 +0100 Subject: [PATCH] fixed wrong casting originating from a copy/paste error. --- src/musrRootValidation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/musrRootValidation.cpp b/src/musrRootValidation.cpp index 24a1151d..cdd169fb 100644 --- a/src/musrRootValidation.cpp +++ b/src/musrRootValidation.cpp @@ -8,7 +8,7 @@ ***************************************************************************/ /*************************************************************************** - * Copyright (C) 2007-2020 by Andreas Suter * + * Copyright (C) 2007-2021 by Andreas Suter * * andreas.suter@psi.ch * * * * This program is free software; you can redistribute it and/or modify * @@ -429,7 +429,7 @@ void PMusrRoot2Xml::CheckClass(TObject *obj, TString str, UInt_t offset) offset += 2; str = offsetStr + "<" + entryTag + ">"; fXmlData.push_back(str.Data()); - DumpEntry(dynamic_cast(obj), offset); + DumpEntry(dynamic_cast(obj), offset); str = offsetStr + ""; fXmlData.push_back(str.Data()); }