Title: [170384] trunk/Source/WebCore
Revision
170384
Author
eric.carl...@apple.com
Date
2014-06-24 12:59:58 -0700 (Tue, 24 Jun 2014)

Log Message

Unreviewed build fix.

* platform/graphics/avfoundation/InbandTextTrackPrivateAVF.cpp:
(WebCore::InbandTextTrackPrivateAVF::processNativeSamples): Cast variadic argument to int.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (170383 => 170384)


--- trunk/Source/WebCore/ChangeLog	2014-06-24 19:52:46 UTC (rev 170383)
+++ trunk/Source/WebCore/ChangeLog	2014-06-24 19:59:58 UTC (rev 170384)
@@ -1,3 +1,10 @@
+2014-06-24  Eric Carlson  <eric.carl...@apple.com>
+
+        Unreviewed build fix.
+
+        * platform/graphics/avfoundation/InbandTextTrackPrivateAVF.cpp:
+        (WebCore::InbandTextTrackPrivateAVF::processNativeSamples): Cast variadic argument to int.
+
 2014-06-24  Brent Fulgham  <bfulg...@apple.com>
 
         [Win] MSVC mishandles enums in bitfields

Modified: trunk/Source/WebCore/platform/graphics/avfoundation/InbandTextTrackPrivateAVF.cpp (170383 => 170384)


--- trunk/Source/WebCore/platform/graphics/avfoundation/InbandTextTrackPrivateAVF.cpp	2014-06-24 19:52:46 UTC (rev 170383)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/InbandTextTrackPrivateAVF.cpp	2014-06-24 19:59:58 UTC (rev 170384)
@@ -571,7 +571,7 @@
         CMSampleTimingInfo timingInfo;
         OSStatus status = CMSampleBufferGetSampleTimingInfo(sampleBuffer, i, &timingInfo);
         if (status) {
-            LOG(Media, "InbandTextTrackPrivateAVF::processNativeSamples(%p) - CMSampleBufferGetSampleTimingInfo returned error %x for sample %li", this, static_cast<SInt32>(status), i);
+            LOG(Media, "InbandTextTrackPrivateAVF::processNativeSamples(%p) - CMSampleBufferGetSampleTimingInfo returned error %x for sample %li", this, static_cast<int>(status), i);
             continue;
         }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to