diff options
Diffstat (limited to 'sys/fs/portalfs/portal_vnops.c')
-rw-r--r-- | sys/fs/portalfs/portal_vnops.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/fs/portalfs/portal_vnops.c b/sys/fs/portalfs/portal_vnops.c index 05b6b58..e622cff 100644 --- a/sys/fs/portalfs/portal_vnops.c +++ b/sys/fs/portalfs/portal_vnops.c @@ -35,7 +35,7 @@ * * @(#)portal_vnops.c 8.14 (Berkeley) 5/21/95 * - * $Id: portal_vnops.c,v 1.27 1997/10/26 20:55:20 phk Exp $ + * $Id: portal_vnops.c,v 1.28 1997/10/27 13:33:41 bde Exp $ */ /* @@ -84,10 +84,9 @@ portal_closefd(p, fd) { int error; struct close_args ua; - int rc; ua.fd = fd; - error = close(p, &ua, &rc); + error = close(p, &ua); /* * We should never get an error, and there isn't anything * we could do if we got one, so just print a message. |