aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-04-20 10:22:42 +0000
committerRichard Levitte <levitte@openssl.org>2002-04-20 10:22:42 +0000
commit45932ad508ae6d022fcbd893de8fc20296185e94 (patch)
tree12aa984eee51f9292a486cb04e2e89605b3f301a
parentce94682ce103c1f5e319722ab14b745a314cb221 (diff)
downloadopenssl-45932ad508ae6d022fcbd893de8fc20296185e94.tar.gz
The callback must have (void) as argument list.
Notified by Bernd Matthes <bernd.matthes@gemplus.com>
-rw-r--r--crypto/engine/tb_ecdsa.c2
1 files changed, 1 insertions, 1 deletions
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);
}