Title: [176828] trunk/Source/_javascript_Core
Revision
176828
Author
[email protected]
Date
2014-12-04 17:06:27 -0800 (Thu, 04 Dec 2014)

Log Message

printInternal(PrintStream& out, JSC::JITCode::JITType type) ends up dumping a literal %s
https://bugs.webkit.org/show_bug.cgi?id=139274

Reviewed by Geoffrey Garen.

* jit/JITCode.cpp:
(WTF::printInternal):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (176827 => 176828)


--- trunk/Source/_javascript_Core/ChangeLog	2014-12-05 01:06:21 UTC (rev 176827)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-12-05 01:06:27 UTC (rev 176828)
@@ -1,3 +1,13 @@
+2014-12-04  Filip Pizlo  <[email protected]>
+
+        printInternal(PrintStream& out, JSC::JITCode::JITType type) ends up dumping a literal %s
+        https://bugs.webkit.org/show_bug.cgi?id=139274
+
+        Reviewed by Geoffrey Garen.
+
+        * jit/JITCode.cpp:
+        (WTF::printInternal):
+
 2014-12-04  Geoffrey Garen  <[email protected]>
 
         Removed the concept of ParserArenaRefCounted

Modified: trunk/Source/_javascript_Core/jit/JITCode.cpp (176827 => 176828)


--- trunk/Source/_javascript_Core/jit/JITCode.cpp	2014-12-05 01:06:21 UTC (rev 176827)
+++ trunk/Source/_javascript_Core/jit/JITCode.cpp	2014-12-05 01:06:27 UTC (rev 176828)
@@ -254,7 +254,7 @@
 
 void printInternal(PrintStream& out, JSC::JITCode::JITType type)
 {
-    out.print("%s", JSC::JITCode::typeName(type));
+    out.print(JSC::JITCode::typeName(type));
 }
 
 } // namespace WTF
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to