From: svost Date: Mon, 22 Feb 2016 12:30:33 +0000 (+0300) Subject: Remove c_str: stringvar1 = stringvar2 X-Git-Tag: nvc-v0.5.6~50^2 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=09bb63d7438ad8550288b852695dea78cff3babc Remove c_str: stringvar1 = stringvar2 --- 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 {