mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Remove "register" keywords.
This commit is contained in:
parent
56dd36b1a6
commit
d34dd851b8
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue