Commit 7351edca authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

Forgot missing casts

parent 686b530d
......@@ -928,7 +928,7 @@ xyzzy_store_ip(VRT_CTX, VCL_IP ip)
CHECK_OBJ_NOTNULL(ctx, VRT_CTX_MAGIC);
priv = VRT_priv_task(ctx, xyzzy_store_ip);
priv = VRT_priv_task(ctx, (void *)xyzzy_store_ip);
if (priv == NULL) {
VRT_fail(ctx, "no priv task - out of ws?");
return;
......@@ -947,7 +947,7 @@ xyzzy_get_ip(VRT_CTX)
CHECK_OBJ_NOTNULL(ctx, VRT_CTX_MAGIC);
priv = VRT_priv_task(ctx, xyzzy_store_ip);
priv = VRT_priv_task(ctx, (void *)xyzzy_store_ip);
AN(priv);
AZ(priv->free);
......
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