]> err.no Git - varnish/commitdiff
Hrmpf!
authorphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Sun, 7 Sep 2008 17:24:09 +0000 (17:24 +0000)
committerphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Sun, 7 Sep 2008 17:24:09 +0000 (17:24 +0000)
A "unsigned *" is not the same as a "unsigned"

git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@3165 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/bin/varnishd/cache_dir_random.c
varnish-cache/bin/varnishd/cache_dir_round_robin.c
varnish-cache/bin/varnishd/cache_dir_simple.c

index 9687bf263d4eedc34411b9a0454e44d2d8142dfd..f514cedcd05580ca5f1848ff8c9ecb5993d20501 100644 (file)
@@ -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;
index 275c8a33e24f2e11061f00dec4b0e9b8fb34df5d..de7fc240810620d0e812a30f1c87d77c7d92b052 100644 (file)
@@ -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;
index d7b1e3ff1487fb50335ba826ea8b78c633a2d831..e0e8b81f3ae944fa2096a174603e7cfaa66f945c 100644 (file)
@@ -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;