2
0
mirror of synced 2025-02-24 14:48:27 +00:00

Fix accidental pass by value

This commit is contained in:
Matt Joiner 2014-11-21 00:04:45 -06:00
parent 0f54c2f79e
commit 26a5fffcca

View 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
}