Use correct format specifier to silence -Wformat warning.
authorRichard Trieu <rtrieu@google.com>
Wed, 29 May 2019 21:25:15 +0000 (21:25 +0000)
committerRichard Trieu <rtrieu@google.com>
Wed, 29 May 2019 21:25:15 +0000 (21:25 +0000)
llvm-svn: 362035

lldb/source/Utility/Timer.cpp

index 7492045..6b46d8b 100644 (file)
@@ -144,7 +144,8 @@ void Timer::DumpCategoryTimes(Stream *s) {
   llvm::sort(sorted.begin(), sorted.end(), CategoryMapIteratorSortCriterion);
 
   for (const auto &stats : sorted)
-    s->Printf("%.9f sec (total: %.3fs; child: %.3fs; count: %llu) for %s\n",
+    s->Printf("%.9f sec (total: %.3fs; child: %.3fs; count: %" PRIu64
+              ") for %s\n",
               stats.nanos / 1000000000., stats.nanos_total / 1000000000.,
               (stats.nanos_total - stats.nanos) / 1000000000., stats.count,
               stats.name);