diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2011-05-12 09:35:38 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2011-05-12 09:35:38 +0000 |
commit | 24e48b3e7c54742c388ebccbd06a1050aeb7c7ce (patch) | |
tree | bbc5aaf5b69d610d28323463a28bd331a85918ec /lib/libc/stdlib/malloc.c | |
parent | e357301211b82e6c69a5ecd2d24f6541fc494c0b (diff) |
fix comment, the bitmap is an array of u_short now
Diffstat (limited to 'lib/libc/stdlib/malloc.c')
-rw-r--r-- | lib/libc/stdlib/malloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c index d82c3269149..eed71c25b69 100644 --- a/lib/libc/stdlib/malloc.c +++ b/lib/libc/stdlib/malloc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: malloc.c,v 1.132 2011/05/12 09:29:30 otto Exp $ */ +/* $OpenBSD: malloc.c,v 1.133 2011/05/12 09:35:37 otto Exp $ */ /* * Copyright (c) 2008 Otto Moerbeek <otto@drijf.net> * @@ -143,7 +143,7 @@ struct dir_info { /* * This structure describes a page worth of chunks. * - * How many bits per u_long in the bitmap + * How many bits per u_short in the bitmap */ #define MALLOC_BITS (NBBY * sizeof(u_short)) struct chunk_info { |