summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib/malloc.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2002-05-27 03:13:23 +0000
committerderaadt <deraadt@openbsd.org>2002-05-27 03:13:23 +0000
commit042896d636adef02e56b22f5b6b4d6bd03dae7a9 (patch)
tree7a70b78a3d0f4f10da1fdc0330be5d30471512bd /lib/libc/stdlib/malloc.c
parentframework to add af-dependent data structure to struct ifnet. (diff)
downloadwireguard-openbsd-042896d636adef02e56b22f5b6b4d6bd03dae7a9.tar.xz
wireguard-openbsd-042896d636adef02e56b22f5b6b4d6bd03dae7a9.zip
unsigned vs unsigned int
Diffstat (limited to 'lib/libc/stdlib/malloc.c')
-rw-r--r--lib/libc/stdlib/malloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c
index bca7bb7c4e1..4e90ce402e4 100644
--- a/lib/libc/stdlib/malloc.c
+++ b/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;