From afaef3993cababa8fd0ad681353d970670e2858e Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Wed, 10 Sep 2014 16:16:46 +0200 Subject: [PATCH] fix compiler warning when compiling with GMP_DESC --- src/math/gmp_desc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/math/gmp_desc.c b/src/math/gmp_desc.c index 8709880..16c1d90 100644 --- a/src/math/gmp_desc.c +++ b/src/math/gmp_desc.c @@ -430,6 +430,7 @@ static int montgomery_reduce(void *a, void *b, void *c) /* clean up */ static void montgomery_deinit(void *a) { + LTC_UNUSED_PARAM(a); } static int exptmod(void *a, void *b, void *c, void *d)