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

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

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

@ -535,8 +535,8 @@ LCovRuntime::fillWithFilename(char *name, size_t length)
static mozilla::Atomic<size_t> globalRuntimeId(0);
size_t rid = globalRuntimeId++;
size_t len = JS_snprintf(name, length, "%s/%" PRId64 "-%d-%d.info",
outDir, timestamp, size_t(pid_), rid);
size_t len = JS_snprintf(name, length, "%s/%" PRId64 "-%" PRIuSIZE "-%" PRIuSIZE ".info",
outDir, timestamp, pid_, rid);
if (length <= len) {
fprintf(stderr, "Warning: LCovRuntime::init: Cannot serialize file name.");
return false;