summaryrefslogtreecommitdiffstats
path: root/engines/e_sureware.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-06-26 07:10:10 +0000
committerRichard Levitte <levitte@openssl.org>2003-06-26 07:10:10 +0000
commita99ce1a57481ff7de2971b9c5cc50c2613f4c420 (patch)
tree172ad7946b920d1e138b7526aab194e7f11c1653 /engines/e_sureware.c
parentc687a3d5d57d4b3e557a2f7a4a952c1ace749d4e (diff)
downloadopenssl-a99ce1a57481ff7de2971b9c5cc50c2613f4c420.tar.gz
Conform with the standard prototype for engine control functions.
Diffstat (limited to 'engines/e_sureware.c')
-rw-r--r--engines/e_sureware.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/e_sureware.c b/engines/e_sureware.c
index cae8bf4856..8e77e5c282 100644
--- a/engines/e_sureware.c
+++ b/engines/e_sureware.c
@@ -69,7 +69,7 @@
#define SUREWARE_LIB_NAME "sureware engine"
#include "e_sureware_err.c"
-static int surewarehk_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)());
+static int surewarehk_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)(void));
static int surewarehk_destroy(ENGINE *e);
static int surewarehk_init(ENGINE *e);
static int surewarehk_finish(ENGINE *e);
@@ -368,7 +368,7 @@ static BIO *logstream = NULL;
* called, the checking and error handling is probably down there.
*/
static int threadsafe=1;
-static int surewarehk_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)())
+static int surewarehk_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)(void))
{
int to_return = 1;