improved formated string handling to make compilers happy.

This commit is contained in:
suter_a 2022-04-11 16:18:36 +02:00
parent 17a31dfcc4
commit 9a92ec2d8e

View File

@ -6728,9 +6728,9 @@ TString PMsrHandler::BeautifyFourierPhaseParameterString()
if (phaseIter) { if (phaseIter) {
if (phaseRef != -1) { if (phaseRef != -1) {
str = TString::Format("parR(%d, %d, %d)", fFourier.fPhaseParamNo[0], offset, fFourier.fPhaseParamNo.size()); str = TString::Format("parR(%d, %d, %lu)", fFourier.fPhaseParamNo[0], offset, fFourier.fPhaseParamNo.size());
} else { } else {
str = TString::Format("par(%d, %d, %d)", fFourier.fPhaseParamNo[0], offset, fFourier.fPhaseParamNo.size()); str = TString::Format("par(%d, %d, %lu)", fFourier.fPhaseParamNo[0], offset, fFourier.fPhaseParamNo.size());
} }
} else { } else {
str = TString(""); str = TString("");