aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-04-15 09:36:24 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-04-15 09:36:24 +0200
commit370e361db628f60bca5509dcc354014569d56752 (patch)
tree7aac3a1e5673ea7da104f615f6c79a0af1be85ba /web
parenta96a346e4ab58729b1f257268f2d2af1ebdca890 (diff)
Some more cleanups
Diffstat (limited to 'web')
-rw-r--r--web/apache/service2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/apache/service b/web/apache/service
index a44bdc0..8dd21d8 100644
--- a/web/apache/service
+++ b/web/apache/service
@@ -33,7 +33,7 @@ namespace web
handle_impl (request& rq, response& rs, log& l, const module& exemplar)
{
M m (static_cast<const M&> (exemplar));
- static_cast<module&>(m).handle (rq, rs, l);
+ static_cast<module&> (m).handle (rq, rs, l);
}
const module& exemplar_;