Source-Changes-HG archive

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

[src/trunk]: src/sys/conf Const msize & mclbytes.



details:   https://anonhg.NetBSD.org/src/rev/ea4f22d911c2
branches:  trunk
changeset: 472211:ea4f22d911c2
user:      simonb <simonb%NetBSD.org@localhost>
date:      Sun Apr 25 04:51:53 1999 +0000

description:
Const msize & mclbytes.

diffstat:

 sys/conf/param.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (17 lines):

diff -r 983b89231ec6 -r ea4f22d911c2 sys/conf/param.c
--- a/sys/conf/param.c  Sun Apr 25 04:04:53 1999 +0000
+++ b/sys/conf/param.c  Sun Apr 25 04:51:53 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: param.c,v 1.27 1999/04/25 02:56:30 simonb Exp $        */
+/*     $NetBSD: param.c,v 1.28 1999/04/25 04:51:53 simonb Exp $        */
 
 /*
  * Copyright (c) 1980, 1986, 1989 Regents of the University of California.
@@ -191,5 +191,5 @@
 /*
  * Actual network mbuf sizes (read-only), for netstat.
  */
-int    msize = MSIZE;
-int    mclbytes = MCLBYTES;
+const  int msize = MSIZE;
+const  int mclbytes = MCLBYTES;



Home | Main Index | Thread Index | Old Index