Title: [161700] trunk/Source/WebCore
Revision
161700
Author
[email protected]
Date
2014-01-10 16:55:15 -0800 (Fri, 10 Jan 2014)

Log Message

Unreviewed EFL build fix after r161678.

static_cast a size_t to unsigned long for %lu format string.

* page/Console.cpp:
(WebCore::internalAddMessage):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (161699 => 161700)


--- trunk/Source/WebCore/ChangeLog	2014-01-11 00:53:54 UTC (rev 161699)
+++ trunk/Source/WebCore/ChangeLog	2014-01-11 00:55:15 UTC (rev 161700)
@@ -1,3 +1,12 @@
+2014-01-10  Joseph Pecoraro  <[email protected]>
+
+        Unreviewed EFL build fix after r161678.
+
+        static_cast a size_t to unsigned long for %lu format string.
+
+        * page/Console.cpp:
+        (WebCore::internalAddMessage):
+
 2014-01-10  Benjamin Poulain  <[email protected]>
 
         Remove the BlackBerry port from trunk

Modified: trunk/Source/WebCore/page/Console.cpp (161699 => 161700)


--- trunk/Source/WebCore/page/Console.cpp	2014-01-11 00:53:54 UTC (rev 161699)
+++ trunk/Source/WebCore/page/Console.cpp	2014-01-11 00:55:15 UTC (rev 161700)
@@ -115,7 +115,7 @@
         if (functionName.isEmpty())
             functionName = ASCIILiteral("(unknown)");
 
-        printf("%lu: %s (", i, functionName.utf8().data());
+        printf("%lu: %s (", static_cast<unsigned long>(i), functionName.utf8().data());
 
         PageConsole::printSourceURLAndPosition(callFrame.sourceURL(), callFrame.lineNumber());
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to