| Index: third_party/tcmalloc/chromium/src/heap-profiler.cc
|
| diff --git a/third_party/tcmalloc/chromium/src/heap-profiler.cc b/third_party/tcmalloc/chromium/src/heap-profiler.cc
|
| index dd94e36089846330e82b37c8462af8d6d308df3a..d27e0b304aa2d0b7da8c13246beee173dec91563 100644
|
| --- a/third_party/tcmalloc/chromium/src/heap-profiler.cc
|
| +++ b/third_party/tcmalloc/chromium/src/heap-profiler.cc
|
| @@ -359,7 +359,7 @@ static void MaybeDumpProfileLocked() {
|
| } else if (FLAGS_heap_profile_time_interval > 0 &&
|
| current_time - last_dump_time >=
|
| FLAGS_heap_profile_time_interval) {
|
| - snprintf(buf, sizeof(buf), "%d sec since the last dump",
|
| + snprintf(buf, sizeof(buf), "%" PRId64 " sec since the last dump",
|
| current_time - last_dump_time);
|
| need_to_dump = true;
|
| last_dump_time = current_time;
|
|
|