From: Richard Levitte Date: Mon, 18 Sep 2000 08:40:55 +0000 (+0000) Subject: Unless we cast, thorough compilers will complain X-Git-Tag: OpenSSL_0_9_6-beta3~52 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=4534fb1c866b5940cf3b7c80a4b306f24c653132 Unless we cast, thorough compilers will complain --- diff --git a/crypto/dso/dso_vms.c b/crypto/dso/dso_vms.c index d2c06ddafa..8ff7090129 100644 --- a/crypto/dso/dso_vms.c +++ b/crypto/dso/dso_vms.c @@ -340,7 +340,7 @@ static void *vms_bind_var(DSO *dso, const char *symname) static DSO_FUNC_TYPE vms_bind_func(DSO *dso, const char *symname) { DSO_FUNC_TYPE sym = 0; - vms_bind_sym(dso, symname, &sym); + vms_bind_sym(dso, symname, (void **)&sym); return sym; }