⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 176673 in webkit


Ignore:
Timestamp:
Dec 2, 2014, 11:04:13 AM (12 years ago)
Author:
eric.carlson@apple.com
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.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r176672 r176673  
     12014-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
    1132014-12-02  Anders Carlsson  <andersca@apple.com>
    214
  • trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm

    r176476 r176673  
    11921192        return MediaTime::positiveInfiniteTime();
    11931193
    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());
    11951195    return MediaTime::invalidTime();
    11961196}
Note: See TracChangeset for help on using the changeset viewer.