summaryrefslogtreecommitdiff
path: root/validat3.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-04-05 20:14:07 -0400
committerJeffrey Walton <noloader@gmail.com>2018-04-05 20:14:07 -0400
commit29113a980d18d04286821ae4ebda064d34d65e3a (patch)
treea162038766d45f731ec29de0d47f6eab6bed4af5 /validat3.cpp
parent7065702ba12b7e891b5a4e28c191d56b26cc27d5 (diff)
downloadcryptopp-git-29113a980d18d04286821ae4ebda064d34d65e3a.tar.gz
Fix compile under Visual Studio 2008
We need to add something to cryptest.sh to find these breaks due to <stdint.h>
Diffstat (limited to 'validat3.cpp')
-rw-r--r--validat3.cpp6
1 files 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;
};