From d34dd851b820510c7f17cac628c2fba2da3dfd02 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Mon, 24 Jan 2005 12:37:51 +0000 Subject: [PATCH] Remove "register" keywords. --- sys/fs/nullfs/null_vnops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/fs/nullfs/null_vnops.c b/sys/fs/nullfs/null_vnops.c index 5edb791c075..44d9226fb25 100644 --- a/sys/fs/nullfs/null_vnops.c +++ b/sys/fs/nullfs/null_vnops.c @@ -219,7 +219,7 @@ SYSCTL_INT(_debug, OID_AUTO, nullfs_bug_bypass, CTLFLAG_RW, int null_bypass(struct vop_generic_args *ap) { - register struct vnode **this_vp_p; + struct vnode **this_vp_p; int error; struct vnode *old_vps[VDESC_MAX_VPS]; struct vnode **vps_p[VDESC_MAX_VPS]; @@ -720,7 +720,7 @@ null_reclaim(struct vop_reclaim_args *ap) static int null_print(struct vop_print_args *ap) { - register struct vnode *vp = ap->a_vp; + struct vnode *vp = ap->a_vp; printf("\tvp=%p, lowervp=%p\n", vp, NULLVPTOLOWERVP(vp)); return (0); }