From: Kirk McKusick Date: Wed, 22 Apr 1992 01:55:25 +0000 (-0800) Subject: ensure proper types for local variables and parameters X-Git-Tag: BSD-4_4-Snapshot-Development~7419 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/312fc53b55ba544a826bc62d5406810c9b79a4a7 ensure proper types for local variables and parameters SCCS-vsn: sys/nfs/nfsnode.h 7.18 SCCS-vsn: sys/nfs/nfs_vnops.c 7.70 --- diff --git a/usr/src/sys/nfs/nfs_vnops.c b/usr/src/sys/nfs/nfs_vnops.c index a90e0aaba0..ddf037baf1 100644 --- a/usr/src/sys/nfs/nfs_vnops.c +++ b/usr/src/sys/nfs/nfs_vnops.c @@ -7,7 +7,7 @@ * * %sccs.include.redist.c% * - * @(#)nfs_vnops.c 7.69 (Berkeley) %G% + * @(#)nfs_vnops.c 7.70 (Berkeley) %G% */ /* @@ -2053,7 +2053,7 @@ nfs_vfree(pvp, ino, mode) int nfs_truncate(vp, length, flags) struct vnode *vp; - u_long length; + off_t length; int flags; { diff --git a/usr/src/sys/nfs/nfsnode.h b/usr/src/sys/nfs/nfsnode.h index 8280525978..3fc6119769 100644 --- a/usr/src/sys/nfs/nfsnode.h +++ b/usr/src/sys/nfs/nfsnode.h @@ -7,7 +7,7 @@ * * %sccs.include.redist.c% * - * @(#)nfsnode.h 7.17 (Berkeley) %G% + * @(#)nfsnode.h 7.18 (Berkeley) %G% */ /* @@ -253,7 +253,7 @@ void nfs_vfree __P(( int mode)); int nfs_truncate __P(( struct vnode *vp, - u_long length, + off_t length, int flags)); int nfs_update __P(( struct vnode *vp,