From 8ef8d54b0d98d705bcb19b1de16a6037111f36f4 Mon Sep 17 00:00:00 2001 From: David Dawes Date: Sat, 16 Jun 2018 15:52:30 -0700 Subject: [PATCH] Unsigned, dang it. --- src/crypto/verus_hash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/verus_hash.h b/src/crypto/verus_hash.h index e68b0b35e..c66d75e79 100644 --- a/src/crypto/verus_hash.h +++ b/src/crypto/verus_hash.h @@ -97,7 +97,7 @@ inline bool IsCPUVerusOptimized() { unsigned int eax,ebx,ecx,edx; #ifdef _WIN32 - int CPUInfo[4]; + unsigned int CPUInfo[4]; CPUInfo[0] = &eax; CPUInfo[1] = &ebx; CPUInfo[2] = &ecx;