aboutsummaryrefslogtreecommitdiff
path: root/src/qt
diff options
context:
space:
mode:
authorGregory Maxwell <gmaxwell@gmail.com>2012-05-09 04:07:24 -0700
committerGregory Maxwell <gmaxwell@gmail.com>2012-05-09 04:07:24 -0700
commit2e767410b83a4468bf83be9c39f99cf0325c7739 (patch)
treec7777e11f9360dc415a19a7fcb04daa1e945976b /src/qt
parentc164396ddc57e26dfd5308c24445a7756caa9255 (diff)
parentf621326c24791be14aa61221f7e35530378b84d8 (diff)
downloadbitcoin-2e767410b83a4468bf83be9c39f99cf0325c7739.tar.xz
Merge pull request #1230 from sipa/warnings
Clean up warnings
Diffstat (limited to 'src/qt')
-rw-r--r--src/qt/transactionrecord.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/transactionrecord.cpp b/src/qt/transactionrecord.cpp
index 90fc5b7da3..53cfb409ff 100644
--- a/src/qt/transactionrecord.cpp
+++ b/src/qt/transactionrecord.cpp
@@ -102,7 +102,7 @@ QList<TransactionRecord> TransactionRecord::decomposeTransaction(const CWallet *
//
int64 nTxFee = nDebit - wtx.GetValueOut();
- for (int nOut = 0; nOut < wtx.vout.size(); nOut++)
+ for (unsigned int nOut = 0; nOut < wtx.vout.size(); nOut++)
{
const CTxOut& txout = wtx.vout[nOut];
TransactionRecord sub(hash, nTime);