Title: [160196] trunk/Source/WebCore
Revision
160196
Author
[email protected]
Date
2013-12-05 15:12:47 -0800 (Thu, 05 Dec 2013)

Log Message

32bit buildfix after r160151
https://bugs.webkit.org/show_bug.cgi?id=125298

Patch by Laszlo Vidacs <[email protected]> on 2013-12-05
Reviewed by Csaba Osztrogonác.

* platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:
(StreamingClient::handleDataReceived):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (160195 => 160196)


--- trunk/Source/WebCore/ChangeLog	2013-12-05 23:04:11 UTC (rev 160195)
+++ trunk/Source/WebCore/ChangeLog	2013-12-05 23:12:47 UTC (rev 160196)
@@ -1,3 +1,13 @@
+2013-12-05  Laszlo Vidacs  <[email protected]>
+
+        32bit buildfix after r160151
+        https://bugs.webkit.org/show_bug.cgi?id=125298
+
+        Reviewed by Csaba Osztrogonác.
+
+        * platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:
+        (StreamingClient::handleDataReceived):
+
 2013-12-05  Myles C. Maxfield  <[email protected]>
 
         Cropping and drawing ImageBuffers results in uninitialized data being shown

Modified: trunk/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp (160195 => 160196)


--- trunk/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp	2013-12-05 23:04:11 UTC (rev 160195)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp	2013-12-05 23:12:47 UTC (rev 160196)
@@ -940,7 +940,7 @@
 
     GMutexLocker locker(GST_OBJECT_GET_LOCK(src));
 
-    GST_LOG_OBJECT(src, "Have %ld bytes of data", priv->buffer ? gst_buffer_get_size(priv->buffer.get()) : length);
+    GST_LOG_OBJECT(src, "Have %lld bytes of data", priv->buffer ? static_cast<long long>(gst_buffer_get_size(priv->buffer.get())) : length);
 
     ASSERT(!priv->buffer || data == getGstBufferDataPointer(priv->buffer.get()));
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to