Bug 762449 - Fix "result of 32-bit shift implicitly converted to 64 bits" on win64. r=njn

This commit is contained in:
Mike Hommey 2015-02-27 16:19:00 +09:00
Родитель cefaffffe9
Коммит 6dd0c8c299
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -155,7 +155,7 @@ jemalloc_stats_impl(jemalloc_stats_t *stats)
/* get the summation for all arenas, i == narenas */
CTL_I_GET("stats.arenas.0.pdirty", pdirty, narenas);
stats->chunksize = 1 << lg_chunk;
stats->chunksize = (size_t) 1 << lg_chunk;
stats->mapped = mapped;
stats->allocated = allocated;
stats->waste = active - allocated;