summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorderaadt <>2002-05-27 03:13:23 +0000
committerderaadt <>2002-05-27 03:13:23 +0000
commit6cb8e09414eccca14ec7833069cbe5fba323906b (patch)
treeb111ea30a242ce7b69f7d2caac7e9d7686890e41 /src
parent50d44611f259867c4966506f5494fda22f1dbb77 (diff)
downloadopenbsd-6cb8e09414eccca14ec7833069cbe5fba323906b.tar.gz
openbsd-6cb8e09414eccca14ec7833069cbe5fba323906b.tar.bz2
openbsd-6cb8e09414eccca14ec7833069cbe5fba323906b.zip
unsigned vs unsigned int
Diffstat (limited to 'src')
-rw-r--r--src/lib/libc/stdlib/malloc.c6
1 files changed, 3 insertions, 3 deletions
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 @@
8 */ 8 */
9 9
10#if defined(LIBC_SCCS) && !defined(lint) 10#if defined(LIBC_SCCS) && !defined(lint)
11static char rcsid[] = "$OpenBSD: malloc.c,v 1.47 2002/02/16 21:27:24 millert Exp $"; 11static char rcsid[] = "$OpenBSD: malloc.c,v 1.48 2002/05/27 03:13:23 deraadt Exp $";
12#endif /* LIBC_SCCS and not lint */ 12#endif /* LIBC_SCCS and not lint */
13 13
14/* 14/*
@@ -186,10 +186,10 @@ static int fdzero;
186#endif 186#endif
187 187
188/* Set when initialization has been done */ 188/* Set when initialization has been done */
189static unsigned malloc_started; 189static unsigned int malloc_started;
190 190
191/* Number of free pages we cache */ 191/* Number of free pages we cache */
192static unsigned malloc_cache = 16; 192static unsigned int malloc_cache = 16;
193 193
194/* The offset from pagenumber to index into the page directory */ 194/* The offset from pagenumber to index into the page directory */
195static u_long malloc_origo; 195static u_long malloc_origo;