Gitweb: http://git.kernel.org/linus/4f0989dbfa8d18dd17c32120aac1eb3e906a62a2 Commit: 4f0989dbfa8d18dd17c32120aac1eb3e906a62a2 Parent: e057e15ff66a620eda4c407486cbb8f8fbb7d878 Author: Tony Battersby <tonyb@cybernetics.com> AuthorDate: Tue Mar 31 15:24:16 2009 -0700 Committer: Linus Torvalds <torvalds@linux-foundation.org> CommitDate: Wed Apr 1 08:59:20 2009 -0700 epoll: use real type instead of void * eventpoll.c uses void * in one place for no obvious reason; change it to use the real type instead. Signed-off-by: Tony Battersby <tonyb@cybernetics.com> Acked-by: Davide Libenzi <davidel@xmailserver.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> --- fs/eventpoll.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/eventpoll.c b/fs/eventpoll.c index 744377c..336fdb8 100644 --- a/fs/eventpoll.c +++ b/fs/eventpoll.c @@ -192,7 +192,7 @@ struct eppoll_entry { struct list_head llink; /* The "base" pointer is set to the container "struct epitem" */ - void *base; + struct epitem *base; /* * Wait queue item that will be linked to the target file wait -- To unsubscribe from this list: send the line "unsubscribe git-commits-head" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
