From f07260afbc2225bf9a8ea542e0fac5523fe4f92c Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Sun, 7 Oct 2018 14:36:09 +0900 Subject: [PATCH] htlcswitch: fix lint under go 1.11 --- htlcswitch/link_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htlcswitch/link_test.go b/htlcswitch/link_test.go index 142ee8c7..2fe1dabf 100644 --- a/htlcswitch/link_test.go +++ b/htlcswitch/link_test.go @@ -53,7 +53,7 @@ func (c *concurrentTester) Fatalf(format string, args ...interface{}) { c.mtx.Lock() defer c.mtx.Unlock() - c.T.Fatalf(format, args) + c.T.Fatalf(format, args...) } // messageToString is used to produce less spammy log messages in trace mode by