Skip to content

Commit 5d4f3fa

Browse files
authored
fix typo in pkg/epoll/epoll.go
Signed-off-by: Aditya Jain <aditya.jainadityajain.jain@gmail.com>
1 parent f4a628b commit 5d4f3fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/epoll/epoll.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ func (e *Epoll) listen() {
205205
// TODO: Handle errors here
206206
klog.V(4).Info("waiting for epoll events...")
207207
count, _ := syscall.EpollWait(e.epfd, events, timeout)
208-
klog..V(4).Infof("received %d events from epoll. dispatching...", count)
208+
klog.V(4).Infof("received %d events from epoll. dispatching...", count)
209209
for i := 0; e.active && i < count; i++ {
210210
e.dispatchEvent(&events[i])
211211
}

0 commit comments

Comments
 (0)