From 94601bfc126fece3d2bc44ca5b5ab8946c66e0a5 Mon Sep 17 00:00:00 2001 From: jasone Date: Fri, 27 Jan 2006 04:36:39 +0000 Subject: Fix the type of a statistics counter (unsigned --> unsigned long). --- lib/libc/stdlib/malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libc/stdlib/malloc.c') diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c index 490b830..237c36f 100644 --- a/lib/libc/stdlib/malloc.c +++ b/lib/libc/stdlib/malloc.c @@ -310,7 +310,7 @@ struct malloc_bin_stats_s { * during normal operation, so is maintained here in order to allow * calculating the high water mark. */ - unsigned curcached; + unsigned long curcached; }; typedef struct arena_stats_s arena_stats_t; -- cgit v1.1