From faea2d97bf0f5cf4b508ca484a4f9e79e75c8f5f Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Fri, 2 Aug 2024 00:01:14 +0300 Subject: [PATCH] net.http: fix a typo, affecting `-d trace_http_response` --- vlib/net/http/backend.c.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/net/http/backend.c.v b/vlib/net/http/backend.c.v index 69eb961ddf..b18dbe5064 100644 --- a/vlib/net/http/backend.c.v +++ b/vlib/net/http/backend.c.v @@ -57,7 +57,7 @@ fn (req &Request) do_request(req_headers string, mut ssl_conn ssl.SSLConn) !Resp $if trace_http_response ? { eprint('< ') eprint(response_text) - eprinln('') + eprintln('') } if req.on_finish != unsafe { nil } { req.on_finish(req, u64(response_text.len))!