diff options
author | bde <bde@FreeBSD.org> | 2002-03-24 04:35:23 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2002-03-24 04:35:23 +0000 |
commit | f45e5bde8ec262c34297fa1ecae9201b0bf56bdb (patch) | |
tree | 1c6663fd779afab014fc1ac7922a5a0bc76cb015 /sys/fs | |
parent | 83dd3dfdc2206dbe7c13359b7d4ca2fb95ab5a0d (diff) | |
download | FreeBSD-src-f45e5bde8ec262c34297fa1ecae9201b0bf56bdb.zip FreeBSD-src-f45e5bde8ec262c34297fa1ecae9201b0bf56bdb.tar.gz |
Fixed some style bugs in the removal of __P(()). Continuation lines
were not outdented to preserve non-KNF lining up of code with parentheses.
Switch to KNF formatting in some cases.
Diffstat (limited to 'sys/fs')
-rw-r--r-- | sys/fs/cd9660/cd9660_rrip.c | 9 | ||||
-rw-r--r-- | sys/fs/cd9660/cd9660_vfsops.c | 2 | ||||
-rw-r--r-- | sys/fs/cd9660/iso.h | 4 |
3 files changed, 7 insertions, 8 deletions
diff --git a/sys/fs/cd9660/cd9660_rrip.c b/sys/fs/cd9660/cd9660_rrip.c index 3703f97..fdcb4f6 100644 --- a/sys/fs/cd9660/cd9660_rrip.c +++ b/sys/fs/cd9660/cd9660_rrip.c @@ -65,17 +65,16 @@ static int cd9660_rrip_altname(ISO_RRIP_ALTNAME *p, ISO_RRIP_ANALYZE *ana); static int cd9660_rrip_attr(ISO_RRIP_ATTR *p, ISO_RRIP_ANALYZE *ana); static int cd9660_rrip_cont(ISO_RRIP_CONT *p, ISO_RRIP_ANALYZE *ana); static void cd9660_rrip_defattr(struct iso_directory_record *isodir, - ISO_RRIP_ANALYZE *ana); + ISO_RRIP_ANALYZE *ana); static void cd9660_rrip_defname(struct iso_directory_record *isodir, - ISO_RRIP_ANALYZE *ana); + ISO_RRIP_ANALYZE *ana); static void cd9660_rrip_deftstamp(struct iso_directory_record *isodir, - ISO_RRIP_ANALYZE *ana); + ISO_RRIP_ANALYZE *ana); static int cd9660_rrip_device(ISO_RRIP_DEVICE *p, ISO_RRIP_ANALYZE *ana); static int cd9660_rrip_extref(ISO_RRIP_EXTREF *p, ISO_RRIP_ANALYZE *ana); static int cd9660_rrip_idflag(ISO_RRIP_IDFLAG *p, ISO_RRIP_ANALYZE *ana); static int cd9660_rrip_loop(struct iso_directory_record *isodir, - ISO_RRIP_ANALYZE *ana, - RRIP_TABLE *table); + ISO_RRIP_ANALYZE *ana, RRIP_TABLE *table); static int cd9660_rrip_pclink(ISO_RRIP_CLINK *p, ISO_RRIP_ANALYZE *ana); static int cd9660_rrip_reldir(ISO_RRIP_RELDIR *p, ISO_RRIP_ANALYZE *ana); static int cd9660_rrip_slink(ISO_RRIP_SLINK *p, ISO_RRIP_ANALYZE *ana); diff --git a/sys/fs/cd9660/cd9660_vfsops.c b/sys/fs/cd9660/cd9660_vfsops.c index d3811af..8d4db7d 100644 --- a/sys/fs/cd9660/cd9660_vfsops.c +++ b/sys/fs/cd9660/cd9660_vfsops.c @@ -99,7 +99,7 @@ MODULE_VERSION(cd9660, 1); static int iso_get_ssector(dev_t dev, struct thread *td); static int iso_mountfs(struct vnode *devvp, struct mount *mp, - struct thread *td, struct iso_args *argp); + struct thread *td, struct iso_args *argp); /* * Try to find the start of the last data track on this CD-ROM. This diff --git a/sys/fs/cd9660/iso.h b/sys/fs/cd9660/iso.h index 4136e35..b41cd0c 100644 --- a/sys/fs/cd9660/iso.h +++ b/sys/fs/cd9660/iso.h @@ -255,11 +255,11 @@ struct iso_mnt { #define blksize(imp, ip, lbn) ((imp)->logical_block_size) int cd9660_vget_internal(struct mount *, ino_t, int, struct vnode **, int, - struct iso_directory_record *); + struct iso_directory_record *); int cd9660_init(struct vfsconf *); int cd9660_uninit(struct vfsconf *); #define cd9660_sysctl ((int (*)(int *, u_int, void *, size_t *, void *, \ - size_t, struct proc *))eopnotsupp) + size_t, struct proc *))eopnotsupp) extern vop_t **cd9660_vnodeop_p; extern vop_t **cd9660_specop_p; |