From: Matt Joiner Date: Fri, 21 Nov 2014 06:04:45 +0000 (-0600) Subject: Fix accidental pass by value X-Git-Tag: v1.0.0~1489 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=26a5fffcca112375ceeff47e4f55b282aa136d9c;p=btrtrc.git Fix accidental pass by value --- diff --git a/download_strategies.go b/download_strategies.go index e0e79814..a21321b2 100644 --- a/download_strategies.go +++ b/download_strategies.go @@ -217,7 +217,7 @@ func (me *requestFiller) priorities() bool { } // Fill requests, with all contextual information available in the receiver. -func (me requestFiller) Run() { +func (me *requestFiller) Run() { if !me.priorities() { return }