fix build of timing.c

This commit is contained in:
Steffen Jaeckel 2019-10-14 15:09:42 +02:00
parent 8365614f59
commit 1cc02f2d88
No known key found for this signature in database
GPG Key ID: AF0CB17621EDAD72

View File

@ -26,7 +26,7 @@ static void ndraw(mp_int *a, const char *name)
char buf[4096];
printf("%s: ", name);
mp_to_radix(a, buf, sizeof(buf), 64);
mp_to_radix(a, buf, sizeof(buf), NULL, 64);
printf("%s\n", buf);
}