cifs: fix the type of cifs_demultiplex_thread()
authorAl Viro <viro@zeniv.linux.org.uk>
Tue, 21 Jun 2011 12:51:28 +0000 (08:51 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Wed, 20 Jul 2011 05:43:39 +0000 (01:43 -0400)
commit7c97c200e2c5aa8b1067bebb99df0a7c2e12ebf3
treebc486a32cb322a58730be30f5c61d272e3fee54f
parentbeefebf1aa611242e022e71bae87034f415d3314
cifs: fix the type of cifs_demultiplex_thread()

... and get rid of a bogus typecast, while we are at it; it's not
just that we want a function returning int and not void, but cast
to pointer to function taking void * and returning void would be
(void (*)(void *)) and not (void *)(void *), TYVM...

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/cifs/connect.c