Changeset 176673 in webkit
- Timestamp:
- Dec 2, 2014, 11:04:13 AM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r176672 r176673 1 2014-12-02 Eric Carlson <eric.carlson@apple.com> 2 3 Fix logging typo 4 https://bugs.webkit.org/show_bug.cgi?id=139182 5 6 Reviewed by Alexey Proskuryakov. 7 8 No new tests, only logging code is changed. 9 10 * platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm: 11 (WebCore::MediaPlayerPrivateAVFoundationObjC::platformDuration): Don't use %f to log a string. 12 1 13 2014-12-02 Anders Carlsson <andersca@apple.com> 2 14 -
trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm
r176476 r176673 1192 1192 return MediaTime::positiveInfiniteTime(); 1193 1193 1194 LOG(Media, "MediaPlayerPrivateAVFoundationObjC::platformDuration(%p) - invalid duration, returning %. 0f", this, toString(MediaTime::invalidTime()).utf8().data());1194 LOG(Media, "MediaPlayerPrivateAVFoundationObjC::platformDuration(%p) - invalid duration, returning %.s", this, toString(MediaTime::invalidTime()).utf8().data()); 1195 1195 return MediaTime::invalidTime(); 1196 1196 }
Note:
See TracChangeset
for help on using the changeset viewer.