diff options
author | jasone <jasone@FreeBSD.org> | 2006-01-27 04:36:39 +0000 |
---|---|---|
committer | jasone <jasone@FreeBSD.org> | 2006-01-27 04:36:39 +0000 |
commit | 94601bfc126fece3d2bc44ca5b5ab8946c66e0a5 (patch) | |
tree | 6abdafb2bf385c70b7371a11667d60dfc457aaec /lib/libc | |
parent | 7a2375b9e421a957a0cd6b6321df5a98192c0b61 (diff) | |
download | FreeBSD-src-94601bfc126fece3d2bc44ca5b5ab8946c66e0a5.zip FreeBSD-src-94601bfc126fece3d2bc44ca5b5ab8946c66e0a5.tar.gz |
Fix the type of a statistics counter (unsigned --> unsigned long).
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/stdlib/malloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |