diff options
author | kib <kib@FreeBSD.org> | 2009-06-10 14:09:05 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2009-06-10 14:09:05 +0000 |
commit | 2a37bc559bc0ddf30ffe24c4c169cf3905ef0339 (patch) | |
tree | c5a4b4f78af104078e0351189ab6920720fe2add /sys/fs/cd9660 | |
parent | a051f2b40a4877c3751f6b94fc1814b53f846a4d (diff) | |
download | FreeBSD-src-2a37bc559bc0ddf30ffe24c4c169cf3905ef0339.zip FreeBSD-src-2a37bc559bc0ddf30ffe24c4c169cf3905ef0339.tar.gz |
s/a_fdidx/a_fp/ for VOP_OPEN comments that inline struct vop_open_args
definition.
Discussed with: bde
MFC after: 2 weeks
Diffstat (limited to 'sys/fs/cd9660')
-rw-r--r-- | sys/fs/cd9660/cd9660_vnops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/cd9660/cd9660_vnops.c b/sys/fs/cd9660/cd9660_vnops.c index 50541f6..f22adb7 100644 --- a/sys/fs/cd9660/cd9660_vnops.c +++ b/sys/fs/cd9660/cd9660_vnops.c @@ -165,7 +165,7 @@ cd9660_open(ap) int a_mode; struct ucred *a_cred; struct thread *a_td; - int a_fdidx; + int a_fp; } */ *ap; { struct vnode *vp = ap->a_vp; |