зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1232113 - "Make the format specifiers in JS_snprintf() invocations more portable". r=shu
This commit is contained in:
Родитель
a910822deb
Коммит
1dbc329d7f
|
@ -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!");
|
||||
|
|
Загрузка…
Ссылка в новой задаче