Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/i386/i386 Fix typo which caused a build failure for...



details:   https://anonhg.NetBSD.org/src/rev/6cea053c4b19
branches:  trunk
changeset: 532965:6cea053c4b19
user:      tron <tron%NetBSD.org@localhost>
date:      Tue Jun 18 09:56:33 2002 +0000

description:
Fix typo which caused a build failure for kernels with diagnostic checks.

diffstat:

 sys/arch/i386/i386/machdep.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 017ac37fa961 -r 6cea053c4b19 sys/arch/i386/i386/machdep.c
--- a/sys/arch/i386/i386/machdep.c      Tue Jun 18 09:52:04 2002 +0000
+++ b/sys/arch/i386/i386/machdep.c      Tue Jun 18 09:56:33 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.473 2002/06/18 07:56:13 tshiozak Exp $   */
+/*     $NetBSD: machdep.c,v 1.474 2002/06/18 09:56:33 tron Exp $       */
 
 /*-
  * Copyright (c) 1996, 1997, 1998, 2000 The NetBSD Foundation, Inc.
@@ -76,7 +76,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.473 2002/06/18 07:56:13 tshiozak Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.474 2002/06/18 09:56:33 tron Exp $");
 
 #include "opt_cputype.h"
 #include "opt_ddb.h"
@@ -3085,7 +3085,7 @@
         */
 #ifdef DIAGNOSTIC
        if (realmode_reserved_start > BIOSTRAMP_BASE ||
-           (realmode_reseved_start+realmode_reserved_size) < (BIOSTRAMP_BASE+
+           (realmode_reserved_start+realmode_reserved_size) < (BIOSTRAMP_BASE+
                                                               PAGE_SIZE)) {
            panic("cannot steal memory for PT page of bioscall.");
        }



Home | Main Index | Thread Index | Old Index