diff options
| author | David Greenman <dg@FreeBSD.org> | 1995-05-08 23:11:12 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 1995-05-08 23:11:12 +0000 |
| commit | 6c206048aeb104865fcee20624e7e4f8e7e34279 (patch) | |
| tree | ce396dc7de47024fe697ed76215258aa83ab0629 | |
| parent | f9a1c2dee2a8d838307d572570aac3e589e05abb (diff) | |
Notes
| -rw-r--r-- | sys/kern/kern_subr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_subr.c b/sys/kern/kern_subr.c index dcd57b0cf41c..a89ad533fc59 100644 --- a/sys/kern/kern_subr.c +++ b/sys/kern/kern_subr.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_subr.c 8.3 (Berkeley) 1/21/94 - * $Id: kern_subr.c,v 1.6 1995/04/09 01:19:25 davidg Exp $ + * $Id: kern_subr.c,v 1.7 1995/04/30 05:11:46 davidg Exp $ */ #include <sys/param.h> @@ -207,7 +207,7 @@ hashinit(elements, type, hashmask) int i; if (elements <= 0) - panic("hashinit: bad cnt"); + panic("hashinit: bad elements"); for (hashsize = 1; hashsize <= elements; hashsize <<= 1) continue; hashsize >>= 1; @@ -236,7 +236,7 @@ phashinit(elements, type, nentries) int i; if (elements <= 0) - panic("hashinit: bad cnt"); + panic("phashinit: bad elements"); for (i = 1, hashsize = primes[1]; hashsize <= elements;) { i++; if (i == NPRIMES) |
