From be6b243ae2d6b3ba158684c945076a1fd65a6f2f Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Thu, 4 Jun 2015 12:23:45 +0200 Subject: [PATCH] epoll.7: tfix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See http://bugs.debian.org/787625 Reported-by: Uwe Kleine-König Signed-off-by: Michael Kerrisk --- man7/epoll.7 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man7/epoll.7 b/man7/epoll.7 index 44760d2fd..e91161f17 100644 --- a/man7/epoll.7 +++ b/man7/epoll.7 @@ -281,7 +281,7 @@ if (epoll_ctl(epollfd, EPOLL_CTL_ADD, listen_sock, &ev) == \-1) { for (;;) { nfds = epoll_wait(epollfd, events, MAX_EVENTS, \-1); if (nfds == \-1) { - perror("epoll_pwait"); + perror("epoll_wait"); exit(EXIT_FAILURE); }