Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/next68k/next68k fix typo allocating color framebuff...



details:   https://anonhg.NetBSD.org/src/rev/aa1b1b16436b
branches:  trunk
changeset: 467445:aa1b1b16436b
user:      dbj <dbj%NetBSD.org@localhost>
date:      Wed Mar 24 23:47:46 1999 +0000

description:
fix typo allocating color framebuffer map.

diffstat:

 sys/arch/next68k/next68k/pmap_bootstrap.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 254a3a677bdd -r aa1b1b16436b sys/arch/next68k/next68k/pmap_bootstrap.c
--- a/sys/arch/next68k/next68k/pmap_bootstrap.c Wed Mar 24 23:47:37 1999 +0000
+++ b/sys/arch/next68k/next68k/pmap_bootstrap.c Wed Mar 24 23:47:46 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_bootstrap.c,v 1.5 1999/03/24 23:16:00 dbj Exp $   */
+/*     $NetBSD: pmap_bootstrap.c,v 1.6 1999/03/24 23:47:46 dbj Exp $   */
 
 /*
  * This file was taken from mvme68k/mvme68k/pmap_bootstrap.c
@@ -173,7 +173,7 @@
        monopa = emonopa - MONOMAPSIZE * sizeof(pt_entry_t);
 
        ecolorpa = emonopa - MONOMAPSIZE * sizeof(pt_entry_t);
-       colorpa = emonopa - COLORMAPSIZE * sizeof(pt_entry_t);
+       colorpa = ecolorpa - COLORMAPSIZE * sizeof(pt_entry_t);
 
        kptmpa = nextpa;
        nextpa += NBPG;



Home | Main Index | Thread Index | Old Index