Make nhbins unsigned rather than size_t.

This commit is contained in:
Jason Evans
2016-02-24 11:02:14 -08:00
parent 8dd5115ede
commit 603b3bd413
2 changed files with 2 additions and 2 deletions

View File

@@ -115,7 +115,7 @@ extern tcache_bin_info_t *tcache_bin_info;
* Number of tcache bins. There are NBINS small-object bins, plus 0 or more
* large-object bins.
*/
extern size_t nhbins;
extern unsigned nhbins;
/* Maximum cached size class. */
extern size_t tcache_maxclass;