Commit 1cc02f2d88f1a6de8a369adf9668a449a7423e56

Steffen Jaeckel 2019-10-14T15:09:42

fix build of timing.c

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/demo/timing.c b/demo/timing.c
index 1a5a05b..f620b8c 100644
--- a/demo/timing.c
+++ b/demo/timing.c
@@ -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);
 }