aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJason Evans <jasone@FreeBSD.org>2006-01-27 04:36:39 +0000
committerJason Evans <jasone@FreeBSD.org>2006-01-27 04:36:39 +0000
commit7138ef5b1d8f53a44774f1d18c29321a3f694a4d (patch)
tree6abdafb2bf385c70b7371a11667d60dfc457aaec /lib
parent03d66b36c7a487cd6cce8c0e5e715924c068b44c (diff)
downloadsrc-7138ef5b1d8f53a44774f1d18c29321a3f694a4d.tar.gz
src-7138ef5b1d8f53a44774f1d18c29321a3f694a4d.zip
Fix the type of a statistics counter (unsigned --> unsigned long).
Notes
Notes: svn path=/head/; revision=154886
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/stdlib/malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c
index 490b8307141e..237c36fcc383 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;