diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-06-02 00:26:09 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-06-02 00:26:09 +0000 |
commit | d686f204ac22baf198a312708441eed9959862b4 (patch) | |
tree | 225d73a1766272e8853b3009b32da49c83bb0dbd /sys/arch/sparc64 | |
parent | 1287ac7bc5a2ce419c575acfef40fe75f56000c2 (diff) |
Remove unused local variable from debug code.
Diffstat (limited to 'sys/arch/sparc64')
-rw-r--r-- | sys/arch/sparc64/sparc64/pmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/sparc64/pmap.c b/sys/arch/sparc64/sparc64/pmap.c index adfb3e63ea2..66e42129441 100644 --- a/sys/arch/sparc64/sparc64/pmap.c +++ b/sys/arch/sparc64/sparc64/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.27 2005/11/11 16:38:30 miod Exp $ */ +/* $OpenBSD: pmap.c,v 1.28 2006/06/02 00:26:08 kettenis Exp $ */ /* $NetBSD: pmap.c,v 1.107 2001/08/31 16:47:41 eeh Exp $ */ #undef NO_VCACHE /* Don't forget the locked TLB in dostart */ /* @@ -410,7 +410,7 @@ void pv_check(void); void pv_check() { - int i, j, s; + int i, s; s = splhigh(); for (i = 0; i < physmem; i++) { |