From a88f856468fb4dac725f0fdc074817dd1fffe04f Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Thu, 10 Jul 2014 02:53:46 +1000 Subject: [PATCH] Fix incorrect log call At least vet catches it... --- client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.go b/client.go index 1b6f89e8..15955a80 100644 --- a/client.go +++ b/client.go @@ -1047,7 +1047,7 @@ func (me *Client) downloadedChunk(t *torrent, c *connection, msg *pp.Message) er } } if cancelled { - log.Print("cancelled concurrent requests for %v", req) + log.Printf("cancelled concurrent requests for %v", req) } me.dataReady(dataSpec{t.InfoHash, req}) -- 2.48.1