Skip to content

Commit 85bdefe

Browse files
author
Yurii Vlasenko
committed
address linter error moriyoshi#12
1 parent 85419fe commit 85bdefe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ func (s *Server) HandleClient(ctx context.Context, conn *net.TCPConn) error {
140140
go func(reqs <-chan *ssh.Request) {
141141
defer wg.Done()
142142
defer s.Log.Debug("HandleClient.requestHandler ended")
143-
for _ = range reqs {
143+
for range reqs {
144144
}
145145
}(reqs)
146146

0 commit comments

Comments
 (0)