From 05ef1e068101892735d291628bb28f9113a524e7 Mon Sep 17 00:00:00 2001 From: pverghese Date: Wed, 3 Jul 2019 15:26:50 +0530 Subject: [PATCH] Removed unnecessary printf statement which corrupts output of http.get --- vlib/http/http_mac.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/http/http_mac.v b/vlib/http/http_mac.v index f0afb2f951..66698a7d6b 100644 --- a/vlib/http/http_mac.v +++ b/vlib/http/http_mac.v @@ -52,7 +52,7 @@ fn write_fn(contents byteptr, size, nmemb int, _mem *MemoryStruct) int { // if !isnil(mem.ws_func) { # if (mem->ws_func) { - C.printf('\n\nhttp_mac.m: GOT WS FUNC. size=%d\n', realsize) + //C.printf('\n\nhttp_mac.m: GOT WS FUNC. size=%d\n', realsize) // Skip negative and 0 junk chars in the WS string mut start := 0 for i := 0; i < realsize; i++ {