From 33df5edc08ebb8f37a0aeeeb5f34b21de559bb9f Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Wed, 25 Sep 2019 23:58:32 +0300 Subject: [PATCH] http: remove const started, use _ instead --- vlib/http/http.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/http/http.v b/vlib/http/http.v index df30d92562..ba9b428ae3 100644 --- a/vlib/http/http.v +++ b/vlib/http/http.v @@ -9,7 +9,7 @@ import http.chunked const ( max_redirects = 4 - started = http.init() + _ = http.init() ) struct Request {