Skip to content

Commit

Permalink
epoll: use real type instead of void *
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Tony Battersby authored and Linus Torvalds committed Apr 1, 2009
1 parent e057e15 commit 4f0989d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/eventpoll.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4f0989d

Please sign in to comment.