From: phk Date: Mon, 14 Jul 2008 15:53:22 +0000 (+0000) Subject: Ooops, FlexeLint was wrong, the consts are not possible. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ed4add45b8170289880518f5af984cedb6e7c50;p=varnish Ooops, FlexeLint was wrong, the consts are not possible. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2945 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishd/cache_dir_round_robin.c b/varnish-cache/bin/varnishd/cache_dir_round_robin.c index 39214153..47663f09 100644 --- a/varnish-cache/bin/varnishd/cache_dir_round_robin.c +++ b/varnish-cache/bin/varnishd/cache_dir_round_robin.c @@ -61,7 +61,7 @@ struct vdi_round_robin { static struct backend * -vdi_round_robin_choose(const struct sess *sp) +vdi_round_robin_choose(struct sess *sp) { struct vdi_round_robin *vs; struct backend *backend; @@ -76,7 +76,7 @@ vdi_round_robin_choose(const struct sess *sp) } static void -vdi_round_robin_fini(const struct director *d) +vdi_round_robin_fini(struct director *d) { int i; struct vdi_round_robin *vs;