From af1ac9cd2ecf95deabb194095cf5c5e66ee2fe86 Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Mon, 10 Jan 2022 23:27:39 -0700 Subject: Fix lint warnings --- listeners.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'listeners.go') diff --git a/listeners.go b/listeners.go index 5f02072..15ffbbe 100644 --- a/listeners.go +++ b/listeners.go @@ -131,7 +131,7 @@ func (fcl *fakeCloseListener) Close() error { // and this is kind of cheating, but it works, and // it apparently even works on Windows. _ = fcl.sharedListener.setDeadline() - listenerPool.Delete(fcl.sharedListener.key) + _, _ = listenerPool.Delete(fcl.sharedListener.key) } return nil } @@ -163,7 +163,7 @@ type fakeClosePacketConn struct { func (fcpc *fakeClosePacketConn) Close() error { if atomic.CompareAndSwapInt32(&fcpc.closed, 0, 1) { - listenerPool.Delete(fcpc.sharedPacketConn.key) + _, _ = listenerPool.Delete(fcpc.sharedPacketConn.key) } return nil } -- cgit v1.2.3