Replace remaining fprintf with tfm::format manually

This commit is contained in:
MarcoFalke 2019-06-13 09:43:24 -04:00
parent fac03ec43a
commit fa8f195195
No known key found for this signature in database
GPG key ID: CE2B75697E69A548
6 changed files with 9 additions and 11 deletions

View file

@ -495,7 +495,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;
}