From 41a15c4f0f2535591ba9f258cf76119f86477c43 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Thu, 31 Mar 2005 09:26:39 +0000 Subject: Give everything prototypes (well, everything that's actually used). --- crypto/bio/bss_conn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crypto/bio/bss_conn.c') diff --git a/crypto/bio/bss_conn.c b/crypto/bio/bss_conn.c index a608d81c7f..bfb2b57713 100644 --- a/crypto/bio/bss_conn.c +++ b/crypto/bio/bss_conn.c @@ -590,9 +590,9 @@ static long conn_ctrl(BIO *b, int cmd, long num, void *ptr) break; case BIO_CTRL_GET_CALLBACK: { - int (**fptr)(); + int (**fptr)(const BIO *bio,int state,int ret); - fptr=(int (**)())ptr; + fptr=(int (**)(const BIO *bio,int state,int ret))ptr; *fptr=data->info_callback; } break; -- cgit v1.2.3