On 2010/8/14 Yuri Kozlov wrote: > Hello. > --- man-pages-git/man2/epoll_ctl.2 2010-03-26 17:46:41.000000000 +0300 > +++ /tmp/epoll_ctl.2 2010-08-14 09:51:09.000000000 +0400 > @@ -81,12 +81,12 @@ > 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 Hello Michael, This patch (found in e4123e51) breaks alignment of C comments, usually you align them when describing data structures. Denis -- To unsubscribe from this list: send the line "unsubscribe linux-man" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html