diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2002-06-09 00:15:34 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2002-06-09 00:15:34 +0000 |
commit | f800b363e62c7f0ad3787f3d3dd2d3aba8aed332 (patch) | |
tree | bfac36d9e655a2cf3d174f87885134563ce0d758 /sys/kern | |
parent | 8da07922a47436a174298d85234dbce8454451d9 (diff) |
different magics for malloc and pool, art@ ok
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/subr_pool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_pool.c b/sys/kern/subr_pool.c index 29007ba7a3b..3930cdcbab6 100644 --- a/sys/kern/subr_pool.c +++ b/sys/kern/subr_pool.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr_pool.c,v 1.29 2002/03/14 00:07:57 art Exp $ */ +/* $OpenBSD: subr_pool.c,v 1.30 2002/06/09 00:15:33 niklas Exp $ */ /* $NetBSD: subr_pool.c,v 1.61 2001/09/26 07:14:56 chs Exp $ */ /*- @@ -103,7 +103,7 @@ struct pool_item { #ifdef DIAGNOSTIC int pi_magic; #endif -#define PI_MAGIC 0xdeadbeef +#define PI_MAGIC 0xdeafbeef /* Other entries use only this list entry */ TAILQ_ENTRY(pool_item) pi_list; }; |