Replace remaining fprintf with tfm::format manually

Github-Pull: #16205
Rebased-From: fa8f195195
This commit is contained in:
MarcoFalke 2019-06-13 09:43:24 -04:00
parent beb09f09b3
commit 79745d1752
5 changed files with 8 additions and 10 deletions

View file

@ -499,7 +499,7 @@ static int CommandLineRPC(int argc, char *argv[])
}
if (strPrint != "") {
fprintf((nRet == 0 ? stdout : stderr), "%s\n", strPrint.c_str());
tfm::format(nRet == 0 ? std::cout : std::cerr, "%s\n", strPrint.c_str());
}
return nRet;
}