Title: [176685] trunk/Source/WebCore
Revision
176685
Author
[email protected]
Date
2014-12-02 12:50:52 -0800 (Tue, 02 Dec 2014)

Log Message

Unreviewed, fix typo introduced in r176673.

* platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
(WebCore::MediaPlayerPrivateAVFoundationObjC::platformDuration):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (176684 => 176685)


--- trunk/Source/WebCore/ChangeLog	2014-12-02 20:36:08 UTC (rev 176684)
+++ trunk/Source/WebCore/ChangeLog	2014-12-02 20:50:52 UTC (rev 176685)
@@ -1,3 +1,10 @@
+2014-12-02  Eric Carlson  <[email protected]>
+
+        Unreviewed, fix typo introduced in r176673.
+
+        * platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
+        (WebCore::MediaPlayerPrivateAVFoundationObjC::platformDuration):
+
 2014-12-02  Beth Dakin  <[email protected]>
 
         Should use standardQuickLookMenuItem for apps that don't implement customizations

Modified: trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm (176684 => 176685)


--- trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm	2014-12-02 20:36:08 UTC (rev 176684)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm	2014-12-02 20:50:52 UTC (rev 176685)
@@ -1191,7 +1191,7 @@
     if (CMTIME_IS_INDEFINITE(cmDuration))
         return MediaTime::positiveInfiniteTime();
 
-    LOG(Media, "MediaPlayerPrivateAVFoundationObjC::platformDuration(%p) - invalid duration, returning %.s", this, toString(MediaTime::invalidTime()).utf8().data());
+    LOG(Media, "MediaPlayerPrivateAVFoundationObjC::platformDuration(%p) - invalid duration, returning %s", this, toString(MediaTime::invalidTime()).utf8().data());
     return MediaTime::invalidTime();
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to