FAQ

Richard B. Johnson (root@chaos.analogic.com)
Wed, 24 Mar 1999 11:07:04 -0500 (EST)


On Wed, 24 Mar 1999, vm (and many others) wrote:

> acct.c:197: too few arguments to function `filp_close'
> acct.c:203: too few arguments to function `filp_close'

--- linux/kernel/acct.c.~1~ Tue Mar 23 16:14:01 1999
+++ linux/kernel/acct.c Tue Mar 23 16:34:55 1999
@@ -194,13 +194,13 @@
}
if (old_acct) {
do_acct_process(0,old_acct);
- filp_close(old_acct);
+ filp_close(old_acct, NULL);
}
out:
unlock_kernel();
return error;
out_err:
- filp_close(file);
+ filp_close(file, NULL);
goto out;
}

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/