aboutsummaryrefslogtreecommitdiff
path: root/src/qt/test
diff options
context:
space:
mode:
authorMatt Corallo <git@bluematt.me>2012-08-07 16:43:58 +0200
committerMatt Corallo <matt@bluematt.me>2012-08-07 19:36:59 +0200
commit319236afa221b571b372d3a1eee4a635f9b53976 (patch)
tree833799b7288c95e99b050b759a7707ab56ec28b1 /src/qt/test
parent026594e269c6bf30e4d69103717d969fc0b3531d (diff)
downloadbitcoin-319236afa221b571b372d3a1eee4a635f9b53976.tar.xz
Fix Win32 compiling of qt/test/uritests.cpp
Diffstat (limited to 'src/qt/test')
-rw-r--r--src/qt/test/uritests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/test/uritests.cpp b/src/qt/test/uritests.cpp
index a281c39ca5..4662f5ed31 100644
--- a/src/qt/test/uritests.cpp
+++ b/src/qt/test/uritests.cpp
@@ -47,7 +47,7 @@ void URITests::uriTests()
uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=100&label=Wikipedia Example"));
QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv));
QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W"));
- QVERIFY(rv.amount == 10000000000);
+ QVERIFY(rv.amount == 10000000000LL);
QVERIFY(rv.label == QString("Wikipedia Example"));
uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?message=Wikipedia Example Address"));