Fix the type of a statistics counter (unsigned --> unsigned long).

This commit is contained in:
Jason Evans 2006-01-27 04:36:39 +00:00
parent 03d66b36c7
commit 7138ef5b1d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=154886

View file

@ -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;