diff options
Diffstat (limited to 'nfsd/loop.c')
-rw-r--r-- | nfsd/loop.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nfsd/loop.c b/nfsd/loop.c index bfec5e5a..f2d6d546 100644 --- a/nfsd/loop.c +++ b/nfsd/loop.c @@ -35,9 +35,10 @@ #include <rpc/rpc_msg.h> #undef malloc -void -server_loop (int fd) +void * +server_loop (void *arg) { + int fd = (int) arg; char buf[MAXIOSIZE]; int xid; int *p, *r; |