Commit 4534fb1c authored by Richard Levitte's avatar Richard Levitte
Browse files

Unless we cast, thorough compilers will complain

parent 362f2b69
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}