Merge pull request #459 from libtom/less-long-long

Don't use long long where not necessary, some platforms lack it
This commit is contained in:
Steffen Jaeckel 2019-11-25 11:13:53 +01:00 committed by GitHub
commit a8357d4328
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;