From 3d32c15bb72b68180a3e1e57c447189f3d8afc6e Mon Sep 17 00:00:00 2001 From: des Date: Thu, 12 Jul 2007 16:02:47 +0000 Subject: [PATCH] Add missing semicolon. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@1677 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- varnish-cache/bin/varnishd/cache_acceptor_epoll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/varnish-cache/bin/varnishd/cache_acceptor_epoll.c b/varnish-cache/bin/varnishd/cache_acceptor_epoll.c index 5c6f6e5d..b12f5e2f 100644 --- a/varnish-cache/bin/varnishd/cache_acceptor_epoll.c +++ b/varnish-cache/bin/varnishd/cache_acceptor_epoll.c @@ -104,7 +104,7 @@ vca_main(void *arg) } } /* check for timeouts */ - deadline = TIM_real() - params->sess_timeout + deadline = TIM_real() - params->sess_timeout; TAILQ_FOREACH_SAFE(sp, &sesshead, list, sp2) { CHECK_OBJ_NOTNULL(sp, SESS_MAGIC); if (sp->t_open > deadline) -- 2.39.5