summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorjasone <jasone@FreeBSD.org>2006-01-27 04:36:39 +0000
committerjasone <jasone@FreeBSD.org>2006-01-27 04:36:39 +0000
commit94601bfc126fece3d2bc44ca5b5ab8946c66e0a5 (patch)
tree6abdafb2bf385c70b7371a11667d60dfc457aaec /lib
parent7a2375b9e421a957a0cd6b6321df5a98192c0b61 (diff)
downloadFreeBSD-src-94601bfc126fece3d2bc44ca5b5ab8946c66e0a5.zip
FreeBSD-src-94601bfc126fece3d2bc44ca5b5ab8946c66e0a5.tar.gz
Fix the type of a statistics counter (unsigned --> unsigned long).
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 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;
OpenPOWER on IntegriCloud