diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-04-22 05:43:15 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-04-22 05:43:15 +0000 |
commit | 2ca2111afa9d6ac1630b3e28226abd9d97b4e431 (patch) | |
tree | 32e68dee26390c4060d3b55fa2b8bded925f1c94 /sys/compat/linux/linux_cdrom.c | |
parent | 856ac2591baaf667bfcf163c7fbcb9f5a766137e (diff) |
Add struct proc * argument to FRELE() and FILE_SET_MATURE() in
anticipation of further changes to closef(). No binary change.
ok krw@ miod@ deraadt@
Diffstat (limited to 'sys/compat/linux/linux_cdrom.c')
-rw-r--r-- | sys/compat/linux/linux_cdrom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_cdrom.c b/sys/compat/linux/linux_cdrom.c index 49979d2640a..38385553335 100644 --- a/sys/compat/linux/linux_cdrom.c +++ b/sys/compat/linux/linux_cdrom.c @@ -1,5 +1,5 @@ -/* $OpenBSD: linux_cdrom.c,v 1.8 2002/03/14 01:26:50 millert Exp $ */ +/* $OpenBSD: linux_cdrom.c,v 1.9 2012/04/22 05:43:14 guenther Exp $ */ /* * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> * All rights reserved. @@ -293,6 +293,6 @@ linux_ioctl_cdrom(p, v, retval) error = sys_ioctl(p, &ia, retval); out: - FRELE(fp); + FRELE(fp, p); return (error); } |