Title: [239981] trunk/Source/_javascript_Core
Revision
239981
Author
tpop...@redhat.com
Date
2019-01-15 04:34:35 -0800 (Tue, 15 Jan 2019)

Log Message

Unreviewed: Fix the -Wformat compiler warnings

* jsc.cpp:
(jscmain):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (239980 => 239981)


--- trunk/Source/_javascript_Core/ChangeLog	2019-01-15 10:14:31 UTC (rev 239980)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-01-15 12:34:35 UTC (rev 239981)
@@ -1,3 +1,10 @@
+2019-01-15  Tomas Popela  <tpop...@redhat.com>
+
+        Unreviewed: Fix the -Wformat compiler warnings
+
+        * jsc.cpp:
+        (jscmain):
+
 2019-01-15  Caio Lima  <ticaiol...@gmail.com>
 
         DFGByteCodeParser rules for bitwise operations should consider type of their operands

Modified: trunk/Source/_javascript_Core/jsc.cpp (239980 => 239981)


--- trunk/Source/_javascript_Core/jsc.cpp	2019-01-15 10:14:31 UTC (rev 239980)
+++ trunk/Source/_javascript_Core/jsc.cpp	2019-01-15 12:34:35 UTC (rev 239981)
@@ -2938,7 +2938,7 @@
     if (options.m_dumpMemoryFootprint) {
         MemoryFootprint footprint = MemoryFootprint::now();
 
-        printf("Memory Footprint:\n    Current Footprint: %llu\n    Peak Footprint: %llu\n", footprint.current, footprint.peak);
+        printf("Memory Footprint:\n    Current Footprint: %" PRIu64 "\n    Peak Footprint: %" PRIu64 "\n", footprint.current, footprint.peak);
     }
 
     return result;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to