Bug 1232113 - "Make the format specifiers in JS_snprintf() invocations more portable". r=shu

This commit is contained in:
Wei Wu 2015-12-16 22:29:00 +01:00
Родитель a910822deb
Коммит 1dbc329d7f
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -353,9 +353,9 @@ SPSProfiler::allocProfileString(JSScript* script, JSFunction* maybeFun)
: JS::CharsToNewUTF8CharsZ(nullptr, atom->twoByteRange(nogc)).c_str());
if (!atomStr)
return nullptr;
ret = JS_snprintf(cstr, len + 1, "%s (%s:%llu)", atomStr.get(), filename, lineno);
ret = JS_snprintf(cstr, len + 1, "%s (%s:%" PRIu64 ")", atomStr.get(), filename, lineno);
} else {
ret = JS_snprintf(cstr, len + 1, "%s:%llu", filename, lineno);
ret = JS_snprintf(cstr, len + 1, "%s:%" PRIu64, filename, lineno);
}
MOZ_ASSERT(ret == len, "Computed length should match actual length!");