From e995a25ec5292aec6c3225e298364b6df5c1c973 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sun, 15 Jan 2023 05:37:43 +0100 Subject: [PATCH] fix warning on termux --- common/mbedtls/bignum.c | 1 + 1 file changed, 1 insertion(+) diff --git a/common/mbedtls/bignum.c b/common/mbedtls/bignum.c index 9b7bcdd1c..200ad7ca0 100644 --- a/common/mbedtls/bignum.c +++ b/common/mbedtls/bignum.c @@ -1442,6 +1442,7 @@ __attribute__((noinline)) #endif void mpi_mul_hlp(size_t i, mbedtls_mpi_uint *s, mbedtls_mpi_uint *d, mbedtls_mpi_uint b) { mbedtls_mpi_uint c = 0, t = 0; + (void)t; #if defined(MULADDC_HUIT) for (; i >= 8; i -= 8) {