From 29113a980d18d04286821ae4ebda064d34d65e3a Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 5 Apr 2018 20:14:07 -0400 Subject: [PATCH] Fix compile under Visual Studio 2008 We need to add something to cryptest.sh to find these breaks due to --- validat3.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/validat3.cpp b/validat3.cpp index 404a5859..adf7f385 100644 --- a/validat3.cpp +++ b/validat3.cpp @@ -784,9 +784,9 @@ struct Scrypt_TestTuple { const char * passwd; const char * salt; - uint64_t n; - uint32_t r; - uint32_t p; + word64 n; + word32 r; + word32 p; const char * expect; };