Title: [239981] trunk/Source/_javascript_Core
- Revision
- 239981
- Author
- [email protected]
- 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 <[email protected]>
+
+ Unreviewed: Fix the -Wformat compiler warnings
+
+ * jsc.cpp:
+ (jscmain):
+
2019-01-15 Caio Lima <[email protected]>
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
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes