]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
epoll_ctl.2: ffix
authorMichael Kerrisk <mtk.manpages@gmail.com>
Mon, 27 Apr 2009 03:26:19 +0000 (15:26 +1200)
committerMichael Kerrisk <mtk.manpages@gmail.com>
Mon, 27 Apr 2009 03:26:19 +0000 (15:26 +1200)
man2/epoll_ctl.2

index 236129cee413542f3821e158c85f2961012e6922..27a5c4a6add33068f0a5927b6ea4ac3e84d37692 100644 (file)
@@ -79,15 +79,15 @@ is defined as :
 .in +4n
 .nf
 typedef union epoll_data {
-    void *ptr;
-    int fd;
-    __uint32_t u32;
-    __uint64_t u64;
+    void        *ptr;
+    int          fd;
+    __uint32_t   u32;
+    __uint64_t   u64;
 } epoll_data_t;
 
 struct epoll_event {
-    __uint32_t events;      /* Epoll events */
-    epoll_data_t data;      /* User data variable */
+    __uint32_t   events;      /* Epoll events */
+    epoll_data_t data;        /* User data variable */
 };
 .fi
 .in