Title: [157692] trunk/Tools
Revision
157692
Author
[email protected]
Date
2013-10-19 20:51:36 -0700 (Sat, 19 Oct 2013)

Log Message

Mac build fix.

* DumpRenderTree/mac/DumpRenderTree.mm: Cast the length for %lu specifier.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (157691 => 157692)


--- trunk/Tools/ChangeLog	2013-10-20 03:15:04 UTC (rev 157691)
+++ trunk/Tools/ChangeLog	2013-10-20 03:51:36 UTC (rev 157692)
@@ -1,5 +1,11 @@
 2013-10-19  Alexey Proskuryakov  <[email protected]>
 
+        Mac build fix.
+
+        * DumpRenderTree/mac/DumpRenderTree.mm: Cast the length for %lu specifier.
+
+2013-10-19  Alexey Proskuryakov  <[email protected]>
+
         Enable webaudio/ tests on DRT/Mac
         https://bugs.webkit.org/show_bug.cgi?id=86914
 

Modified: trunk/Tools/DumpRenderTree/mac/DumpRenderTree.mm (157691 => 157692)


--- trunk/Tools/DumpRenderTree/mac/DumpRenderTree.mm	2013-10-20 03:15:04 UTC (rev 157691)
+++ trunk/Tools/DumpRenderTree/mac/DumpRenderTree.mm	2013-10-20 03:51:36 UTC (rev 157692)
@@ -1222,7 +1222,7 @@
         printf("DumpMalloc: %li\n", mallocStats.committedVMBytes);
 
         if (gTestRunner->dumpAsAudio())
-            printf("Content-Length: %lu\n", [resultData length]);
+            printf("Content-Length: %lu\n", static_cast<unsigned long>([resultData length]));
 
         if (resultData) {
             fwrite([resultData bytes], 1, [resultData length], stdout);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to