privcmd_ioctl: remove unnecessary variable shadowing.

This commit is contained in:
yamt 2005-06-01 12:56:02 +00:00
parent 261b58bea9
commit 5c8133c87b

View File

@ -1,4 +1,4 @@
/* $NetBSD: privcmd.c,v 1.3 2005/05/24 12:07:12 yamt Exp $ */
/* $NetBSD: privcmd.c,v 1.4 2005/06/01 12:56:02 yamt Exp $ */
/*
*
@ -33,7 +33,7 @@
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: privcmd.c,v 1.3 2005/05/24 12:07:12 yamt Exp $");
__KERNEL_RCSID(0, "$NetBSD: privcmd.c,v 1.4 2005/06/01 12:56:02 yamt Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -99,7 +99,7 @@ privcmd_ioctl(void *v)
break;
case IOCTL_PRIVCMD_MMAP:
{
int i, j, error;
int i, j;
privcmd_mmap_t *mcmd = ap->a_data;
privcmd_mmap_entry_t mentry;
vaddr_t va;