Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/sgimips/sgimips Fix obvious typos: swapdev set to i...



details:   https://anonhg.NetBSD.org/src/rev/c2558a6a99b4
branches:  trunk
changeset: 515130:c2558a6a99b4
user:      wdk <wdk%NetBSD.org@localhost>
date:      Mon Sep 17 09:33:41 2001 +0000

description:
Fix obvious typos: swapdev set to incorrect major number preventing
kernel from accessing swap device.

diffstat:

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

diffs (18 lines):

diff -r 15164dd50bef -r c2558a6a99b4 sys/arch/sgimips/sgimips/conf.c
--- a/sys/arch/sgimips/sgimips/conf.c   Mon Sep 17 09:21:58 2001 +0000
+++ b/sys/arch/sgimips/sgimips/conf.c   Mon Sep 17 09:33:41 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: conf.c,v 1.8 2001/07/08 20:30:13 thorpej Exp $ */
+/*     $NetBSD: conf.c,v 1.9 2001/09/17 09:33:41 wdk Exp $     */
 
 /*
  * Copyright (c) 1992, 1993
@@ -118,7 +118,7 @@
  * confuse, e.g. the hashing routines.  User access (e.g., for libkvm
  * and ps) is provided through the /dev/drum character (raw) device.
  */
-dev_t  swapdev = makedev(0, 0);
+dev_t  swapdev = makedev(1, 0);
 
 struct cdevsw cdevsw[] =
 {



Home | Main Index | Thread Index | Old Index