]> Sergey Matveev's repositories - btrtrc.git/commitdiff
Fix accidental pass by value
authorMatt Joiner <anacrolix@gmail.com>
Fri, 21 Nov 2014 06:04:45 +0000 (00:04 -0600)
committerMatt Joiner <anacrolix@gmail.com>
Fri, 21 Nov 2014 06:04:45 +0000 (00:04 -0600)
download_strategies.go

index e0e79814e0d79ef31e9b3bd44262ef83e27fceb6..a21321b223fee608993f86743719036533825754 100644 (file)
@@ -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
        }