From 9752086431516679cd48ec42cf33525a4f53ba0d Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Fri, 22 Jun 2018 15:31:58 +0200 Subject: [PATCH] fix warning when compiling tfm from pre_gen/mpi.c --- src/bin/fp_toradix_n.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/fp_toradix_n.c b/src/bin/fp_toradix_n.c index 5c9bf62..c26a02b 100644 --- a/src/bin/fp_toradix_n.c +++ b/src/bin/fp_toradix_n.c @@ -13,7 +13,7 @@ int fp_toradix_n(fp_int *a, char *str, int radix, int maxlen) { int digs; fp_int t; - fp_digit d; + fp_digit d = 0; char *_s = str; /* check range of the radix */