From 09bb63d7438ad8550288b852695dea78cff3babc Mon Sep 17 00:00:00 2001 From: svost Date: Mon, 22 Feb 2016 15:30:33 +0300 Subject: [PATCH] Remove c_str: stringvar1 = stringvar2 --- src/irc.cpp | 2 +- src/rpcwallet.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/irc.cpp b/src/irc.cpp index 03bc607..ecdafaa 100644 --- a/src/irc.cpp +++ b/src/irc.cpp @@ -333,7 +333,7 @@ void ThreadIRCSeed2(void* parg) { // index 7 is limited to 16 characters // could get full length name at index 10, but would be different from join messages - strName = vWords[7].c_str(); + strName = vWords[7]; printf("IRC got who\n"); } diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp index 5ebff9c..0c27a90 100644 --- a/src/rpcwallet.cpp +++ b/src/rpcwallet.cpp @@ -1785,7 +1785,7 @@ Value reservebalance(const Array& params, bool fHelp) nAmount = (nAmount / CENT) * CENT; // round to cent if (nAmount < 0) throw runtime_error("amount cannot be negative.\n"); - mapArgs["-reservebalance"] = FormatMoney(nAmount).c_str(); + mapArgs["-reservebalance"] = FormatMoney(nAmount); } else { -- 1.7.1