Commit b44f7a14 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Hrmpf!

A "unsigned *" is not the same as a "unsigned"



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@3165 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 2b3c58b1
......@@ -120,7 +120,7 @@ vdi_random_getfd(struct sess *sp)
return (NULL);
}
static unsigned *
static unsigned
vdi_random_healthy(const struct sess *sp)
{
struct vdi_random *vs;
......
......@@ -84,7 +84,7 @@ vdi_round_robin_getfd(struct sess *sp)
return (NULL);
}
static unsigned *
static unsigned
vdi_round_robin_healthy(const struct sess *sp)
{
struct vdi_round_robin *vs;
......
......@@ -66,7 +66,7 @@ vdi_simple_getfd(struct sess *sp)
return (VBE_GetVbe(sp, vs->backend));
}
static unsigned *
static unsigned
vdi_simple_healthy(const struct sess *sp)
{
struct vdi_simple *vs;
......
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