epoll_ctl.2: wspfix

Reported-by: Denis Barbier <bouzim@gmail.com>
Signed-off-by: Michael Kerrisk <mtk@konstanz.(none)>
This commit is contained in:
Michael Kerrisk 2010-08-29 14:22:51 +02:00
parent cb8c0c9b69
commit 2677bc5cea
1 changed files with 3 additions and 3 deletions

View File

@ -81,12 +81,12 @@ is defined as :
typedef union epoll_data {
void *ptr;
int fd;
uint32_t u32;
uint64_t u64;
uint32_t u32;
uint64_t u64;
} epoll_data_t;
struct epoll_event {
uint32_t events; /* Epoll events */
uint32_t events; /* Epoll events */
epoll_data_t data; /* User data variable */
};
.fi