Fix compile under Visual Studio 2008

We need to add something to cryptest.sh to find these breaks due to <stdint.h>
This commit is contained in:
Jeffrey Walton 2018-04-05 20:14:07 -04:00
parent 7065702ba1
commit 29113a980d
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -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;
};