From ab7c1e0e25a5a6f95014573aa71aa7d18f635532 Mon Sep 17 00:00:00 2001 From: Vlad Date: Wed, 19 Oct 2016 13:30:43 +0200 Subject: [PATCH] whisper: build fix (filter) --- whisper/whisperv5/filter_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/whisper/whisperv5/filter_test.go b/whisper/whisperv5/filter_test.go index 71b6b04298..25bfdf85d4 100644 --- a/whisper/whisperv5/filter_test.go +++ b/whisper/whisperv5/filter_test.go @@ -21,8 +21,8 @@ import "testing" func TestFilters(x *testing.T) { filters := NewFilters(nil) f := Filter{} - filters.Install(f) - i := filters.Install(f) + filters.Install(&f) + i := filters.Install(&f) if i == 0 { x.Errorf("failed install") return