Title: [115586] trunk/Source/_javascript_Core
Revision
115586
Author
[email protected]
Date
2012-04-28 15:50:02 -0700 (Sat, 28 Apr 2012)

Log Message

Try to fix the Qt build.

* heap/Heap.cpp:
(JSC::Heap::lastChanceToFinalize):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (115585 => 115586)


--- trunk/Source/_javascript_Core/ChangeLog	2012-04-28 22:45:37 UTC (rev 115585)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-04-28 22:50:02 UTC (rev 115586)
@@ -1,3 +1,10 @@
+2012-04-28  Sam Weinig  <[email protected]>
+
+        Try to fix the Qt build.
+
+        * heap/Heap.cpp:
+        (JSC::Heap::lastChanceToFinalize):
+
 2012-04-28  Geoffrey Garen  <[email protected]>
 
         Try to fix the Windows build.

Modified: trunk/Source/_javascript_Core/heap/Heap.cpp (115585 => 115586)


--- trunk/Source/_javascript_Core/heap/Heap.cpp	2012-04-28 22:45:37 UTC (rev 115585)
+++ trunk/Source/_javascript_Core/heap/Heap.cpp	2012-04-28 22:50:02 UTC (rev 115586)
@@ -366,7 +366,7 @@
 
     // FIXME: Make this a release-mode crash once we're sure no one's doing this.
     if (size_t size = m_protectedValues.size())
-        WTFLogAlways("ERROR: _javascript_Core heap deallocated while %ld values were still protected", size);
+        WTFLogAlways("ERROR: _javascript_Core heap deallocated while %ld values were still protected", static_cast<unsigned long>(size));
 
     m_weakSet.finalizeAll();
     canonicalizeCellLivenessData();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to