Title: [176673] trunk/Source/WebCore
Revision
176673
Author
eric.carl...@apple.com
Date
2014-12-02 11:04:13 -0800 (Tue, 02 Dec 2014)

Log Message

Fix logging typo
https://bugs.webkit.org/show_bug.cgi?id=139182

Reviewed by Alexey Proskuryakov.

No new tests, only logging code is changed.

* platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
(WebCore::MediaPlayerPrivateAVFoundationObjC::platformDuration): Don't use %f to log a string.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (176672 => 176673)


--- trunk/Source/WebCore/ChangeLog	2014-12-02 19:02:20 UTC (rev 176672)
+++ trunk/Source/WebCore/ChangeLog	2014-12-02 19:04:13 UTC (rev 176673)
@@ -1,3 +1,15 @@
+2014-12-02  Eric Carlson  <eric.carl...@apple.com>
+
+        Fix logging typo
+        https://bugs.webkit.org/show_bug.cgi?id=139182
+
+        Reviewed by Alexey Proskuryakov.
+
+        No new tests, only logging code is changed.
+
+        * platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
+        (WebCore::MediaPlayerPrivateAVFoundationObjC::platformDuration): Don't use %f to log a string.
+
 2014-12-02  Anders Carlsson  <ander...@apple.com>
 
         Get rid of the WinINet based network implementation

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


--- trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm	2014-12-02 19:02:20 UTC (rev 176672)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm	2014-12-02 19:04:13 UTC (rev 176673)
@@ -1191,7 +1191,7 @@
     if (CMTIME_IS_INDEFINITE(cmDuration))
         return MediaTime::positiveInfiniteTime();
 
-    LOG(Media, "MediaPlayerPrivateAVFoundationObjC::platformDuration(%p) - invalid duration, returning %.0f", 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
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to