From 6cb8e09414eccca14ec7833069cbe5fba323906b Mon Sep 17 00:00:00 2001 From: deraadt <> Date: Mon, 27 May 2002 03:13:23 +0000 Subject: unsigned vs unsigned int --- src/lib/libc/stdlib/malloc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib') diff --git a/src/lib/libc/stdlib/malloc.c b/src/lib/libc/stdlib/malloc.c index bca7bb7c4e..4e90ce402e 100644 --- a/src/lib/libc/stdlib/malloc.c +++ b/src/lib/libc/stdlib/malloc.c @@ -8,7 +8,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: malloc.c,v 1.47 2002/02/16 21:27:24 millert Exp $"; +static char rcsid[] = "$OpenBSD: malloc.c,v 1.48 2002/05/27 03:13:23 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -186,10 +186,10 @@ static int fdzero; #endif /* Set when initialization has been done */ -static unsigned malloc_started; +static unsigned int malloc_started; /* Number of free pages we cache */ -static unsigned malloc_cache = 16; +static unsigned int malloc_cache = 16; /* The offset from pagenumber to index into the page directory */ static u_long malloc_origo; -- cgit v1.2.3-55-g6feb