diff options
author | Richard Levitte <levitte@openssl.org> | 2002-04-20 10:22:42 +0000 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2002-04-20 10:22:42 +0000 |
commit | 45932ad508ae6d022fcbd893de8fc20296185e94 (patch) | |
tree | 12aa984eee51f9292a486cb04e2e89605b3f301a /crypto/engine | |
parent | ce94682ce103c1f5e319722ab14b745a314cb221 (diff) | |
download | openssl-new-45932ad508ae6d022fcbd893de8fc20296185e94.tar.gz |
The callback must have (void) as argument list.
Notified by Bernd Matthes <bernd.matthes@gemplus.com>
Diffstat (limited to 'crypto/engine')
-rw-r--r-- | crypto/engine/tb_ecdsa.c | 2 |
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); } |