зеркало из https://github.com/mozilla/gecko-dev.git
Bug 762449 - Fix "result of 32-bit shift implicitly converted to 64 bits" on win64. r=njn
This commit is contained in:
Родитель
cefaffffe9
Коммит
6dd0c8c299
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче