mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
Unless we cast, thorough compilers will complain
This commit is contained in:
parent
362f2b69ff
commit
4534fb1c86
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user