From: Richard Levitte Date: Sat, 20 Apr 2002 10:22:42 +0000 (+0000) Subject: The callback must have (void) as argument list. X-Git-Tag: OpenSSL_0_9_6d~20^2~3 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=45932ad508ae6d022fcbd893de8fc20296185e94;p=oweals%2Fopenssl.git The callback must have (void) as argument list. Notified by Bernd Matthes --- 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); }