From 6af670af27f74e9cb5c8566d1e5a226adbd7bfb6 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Sun, 16 Nov 2014 23:02:53 +0100 Subject: [PATCH] Windows build fix. --- test/crypto.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/crypto.cpp b/test/crypto.cpp index d8bd25035..08236135a 100644 --- a/test/crypto.cpp +++ b/test/crypto.cpp @@ -139,7 +139,7 @@ BOOST_AUTO_TEST_CASE(cryptopp_ecdsa_sipaseckp256k1) Secret secret(sha3(sbytes)); KeyPair key(secret); - bytes m({0xFF}); + bytes m(1, 0xff); int tests = 2; while (m[0]++, tests--) {