Don't use long long where not necessary, some platforms lack it

This commit is contained in:
Jan Nijtmans 2019-11-20 15:09:22 +01:00 committed by Steffen Jaeckel
parent fc5f50768b
commit 4cbd7d59f2

View File

@ -95,7 +95,7 @@ void rand_num2(mp_int *a)
int main(int argc, char *argv[])
{
int n, tmp;
long long max;
long max;
mp_int a, b, c, d, e;
#ifdef MTEST_NO_FULLSPEED
clock_t t1;