Skip to content

Commit

Permalink
net.http: fix a typo, affecting -d trace_http_response
Browse files Browse the repository at this point in the history
  • Loading branch information
spytheman committed Aug 1, 2024
1 parent a4b8768 commit faea2d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vlib/net/http/backend.c.v
Original file line number Diff line number Diff line change
Expand Up @@ -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))!
Expand Down

0 comments on commit faea2d9

Please sign in to comment.