Bug 962576 - Fix warning in minor GC profiling code which is not built by default r=me DONTBUILD

This commit is contained in:
Jon Coppeard 2014-01-23 12:25:25 +00:00
parent 1e1174acfc
commit 25b096a643

View File

@ -757,7 +757,7 @@ js::Nursery::collect(JSRuntime *rt, JS::gcreason::Reason reason, TypeObjectList
TIME_END(total);
#ifdef PROFILE_NURSERY
uint64_t totalTime = TIME_TOTAL(total);
int64_t totalTime = TIME_TOTAL(total);
if (totalTime >= GCReportThreshold) {
static bool printedHeader = false;