From 3696413c5e3e4a73b5dd8ecc1906d60fbdafe864 Mon Sep 17 00:00:00 2001 From: otto <> Date: Thu, 12 May 2011 09:35:37 +0000 Subject: fix comment, the bitmap is an array of u_short now --- src/lib/libc/stdlib/malloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib') diff --git a/src/lib/libc/stdlib/malloc.c b/src/lib/libc/stdlib/malloc.c index d82c326914..eed71c25b6 100644 --- a/src/lib/libc/stdlib/malloc.c +++ b/src/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 * @@ -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 { -- cgit v1.2.3-55-g6feb