aboutsummaryrefslogtreecommitdiff
path: root/src/bignum.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-04-15 12:22:30 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2012-04-15 13:40:14 +0200
commit8add7822cef7d39cb761f59e6b837159a4968982 (patch)
tree4553d1c473be24d8c4bdc5c3031799f181091bb2 /src/bignum.h
parent1f29d399f449af918189f0d8a0302a74286dc6b7 (diff)
downloadbitcoin-8add7822cef7d39cb761f59e6b837159a4968982.tar.xz
fix warnings: array subscript is of type 'char' [-Wchar-subscripts]
Diffstat (limited to 'src/bignum.h')
-rw-r--r--src/bignum.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bignum.h b/src/bignum.h
index 95e21977e7..daf5f6883a 100644
--- a/src/bignum.h
+++ b/src/bignum.h
@@ -301,7 +301,7 @@ public:
while (isxdigit(*psz))
{
*this <<= 4;
- int n = phexdigit[*psz++];
+ int n = phexdigit[(unsigned char)*psz++];
*this += n;
}
if (fNegative)