aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2015-07-19 11:55:36 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2015-07-19 11:55:36 +0100
commite62692f5896460556538a14fef1324c4272159ec (patch)
treeb822b76c51f40d7f05b05601df8efe79bb4107e0
parentMerge pull request #346 (diff)
downloadmonero-e62692f5896460556538a14fef1324c4272159ec.tar.xz
simplewallet: use unsigned long long instead of size_t in message
boost doesn't support %zu for size_t, and the previous change to %u could technically lose bits (though it would require splitting a transfer into 4 billion transactions, which seems unlikely).
-rw-r--r--src/simplewallet/simplewallet.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index dcb19ac15..d3c1f53e9 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -1421,9 +1421,9 @@ bool simple_wallet::transfer(const std::vector<std::string> &args_)
total_fee += ptx_vector[n].fee;
}
- std::string prompt_str = (boost::format(tr("Your transaction needs to be split into %u transactions. "
+ std::string prompt_str = (boost::format(tr("Your transaction needs to be split into %llu transactions. "
"This will result in a transaction fee being applied to each transaction, for a total fee of %s. Is this okay? (Y/Yes/N/No)")) %
- ptx_vector.size() % print_money(total_fee)).str();
+ ((unsigned long long)ptx_vector.size()) % print_money(total_fee)).str();
std::string accepted = command_line::input_line(prompt_str);
if (accepted != "Y" && accepted != "y" && accepted != "Yes" && accepted != "yes")
{
@@ -1552,9 +1552,9 @@ bool simple_wallet::sweep_dust(const std::vector<std::string> &args_)
std::string prompt_str = tr("Sweeping ") + print_money(total_dust);
if (ptx_vector.size() > 1) {
- prompt_str = (boost::format(tr("Sweeping %s in %u transactions for a total fee of %s. Is this okay? (Y/Yes/N/No)")) %
+ prompt_str = (boost::format(tr("Sweeping %s in %llu transactions for a total fee of %s. Is this okay? (Y/Yes/N/No)")) %
print_money(total_dust) %
- ptx_vector.size() %
+ ((unsigned long long)ptx_vector.size()) %
print_money(total_fee)).str();
}
else {