Fix (struct vpi_ii).p type

It needs to be a generic pointer pointer, because it is initialized as
a pointer to a pointer to an arbitrary struct, yet (void **) is can not
be dereferenced.

Right now, the instance info is not used, but this might change.
parent 415ed78f
...@@ -75,7 +75,7 @@ void VPI_acl_log(VRT_CTX, const char *); ...@@ -75,7 +75,7 @@ void VPI_acl_log(VRT_CTX, const char *);
/* vmod object instance info */ /* vmod object instance info */
struct vpi_ii { struct vpi_ii {
const void * p; uintptr_t * p;
const char * const name; const char * const name;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment