From 45932ad508ae6d022fcbd893de8fc20296185e94 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Sat, 20 Apr 2002 10:22:42 +0000 Subject: [PATCH] The callback must have (void) as argument list. Notified by Bernd Matthes --- crypto/engine/tb_ecdsa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/engine/tb_ecdsa.c b/crypto/engine/tb_ecdsa.c index 682ca15312..5860fcac72 100644 --- a/crypto/engine/tb_ecdsa.c +++ b/crypto/engine/tb_ecdsa.c @@ -69,7 +69,7 @@ void ENGINE_unregister_ECDSA(ENGINE *e) engine_table_unregister(&ecdsa_table, e); } -static void engine_unregister_all_ECDSA() +static void engine_unregister_all_ECDSA(void) { engine_table_cleanup(&ecdsa_table); } -- 2.34.1