diff options
author | 2000-06-07 08:29:34 +0000 | |
---|---|---|
committer | 2000-06-07 08:29:34 +0000 | |
commit | 303c08a1bf2b21f994fd54c5ac877486d834f65c (patch) | |
tree | cae96e97b25bb5946c0cc819d02a198ce5a15f0a /sys/kern/kern_malloc_debug.c | |
parent | fix anycast address determination. (diff) | |
download | wireguard-openbsd-303c08a1bf2b21f994fd54c5ac877486d834f65c.tar.xz wireguard-openbsd-303c08a1bf2b21f994fd54c5ac877486d834f65c.zip |
Default type and size to -1.
Diffstat (limited to 'sys/kern/kern_malloc_debug.c')
-rw-r--r-- | sys/kern/kern_malloc_debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_malloc_debug.c b/sys/kern/kern_malloc_debug.c index 380e522e6b6..d0b2e788e68 100644 --- a/sys/kern/kern_malloc_debug.c +++ b/sys/kern/kern_malloc_debug.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_malloc_debug.c,v 1.2 2000/06/06 20:24:51 art Exp $ */ +/* $OpenBSD: kern_malloc_debug.c,v 1.3 2000/06/07 08:29:34 art Exp $ */ /* * Copyright (c) 1999, 2000 Artur Grabowski <art@openbsd.org> @@ -76,8 +76,8 @@ * if any memory chunks of this type are used. It's ok to change the size * in runtime. */ -int malloc_deb_type = M_MBUF; -int malloc_deb_size = 128; +int malloc_deb_type = -1; +int malloc_deb_size = -1; /* * MALLOC_DEBUG_CHUNKS is the number of memory chunks we require on the |