Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/x68k/x68k Delete unused variables.



details:   https://anonhg.NetBSD.org/src/rev/ec34202ecfc3
branches:  trunk
changeset: 518143:ec34202ecfc3
user:      minoura <minoura%NetBSD.org@localhost>
date:      Sun Nov 25 15:42:23 2001 +0000

description:
Delete unused variables.

diffstat:

 sys/arch/x68k/x68k/pmap.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r cf45123585a5 -r ec34202ecfc3 sys/arch/x68k/x68k/pmap.c
--- a/sys/arch/x68k/x68k/pmap.c Sun Nov 25 15:26:03 2001 +0000
+++ b/sys/arch/x68k/x68k/pmap.c Sun Nov 25 15:42:23 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.70 2001/11/24 06:53:19 isaki Exp $  */
+/*     $NetBSD: pmap.c,v 1.71 2001/11/25 15:42:23 minoura Exp $        */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -1865,7 +1865,7 @@
 pmap_zero_page(phys)
        paddr_t phys;
 {
-       int s, npte;
+       int npte;
 
        PMAP_DPRINTF(PDB_FOLLOW, ("pmap_zero_page(%lx)\n", phys));
 
@@ -1916,7 +1916,7 @@
 pmap_zero_page_uncached(phys)
        paddr_t phys;
 {
-       int s, npte;
+       int npte;
 
        PMAP_DPRINTF(PDB_FOLLOW, ("pmap_zero_page_uncached(%lx)\n", phys));
 
@@ -1953,7 +1953,7 @@
 pmap_copy_page(src, dst)
        paddr_t src, dst;
 {
-       int s, npte1, npte2;
+       int npte1, npte2;
 
        PMAP_DPRINTF(PDB_FOLLOW, ("pmap_copy_page(%lx, %lx)\n", src, dst));
 



Home | Main Index | Thread Index | Old Index