From c13d7c02968c17a7c5eb8dca1ace6a916be0de3a Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Sun, 9 Jan 2011 17:50:06 +0000 Subject: [PATCH] Fix warning. --- crypto/ec/ectest.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/ec/ectest.c b/crypto/ec/ectest.c index 834d54ab59..6dd1677967 100644 --- a/crypto/ec/ectest.c +++ b/crypto/ec/ectest.c @@ -234,7 +234,7 @@ static void group_order_tests(EC_GROUP *group) BN_CTX_free(ctx); } -static void prime_field_tests() +static void prime_field_tests(void) { BN_CTX *ctx = NULL; BIGNUM *p, *a, *b; @@ -777,7 +777,7 @@ static void prime_field_tests() if (!EC_GROUP_copy(_variable, group)) ABORT; \ -static void char2_field_tests() +static void char2_field_tests(void) { BN_CTX *ctx = NULL; BIGNUM *p, *a, *b; -- 2.25.1