Changeset 170384 in webkit


Ignore:
Timestamp:
Jun 24, 2014, 12:59:58 PM (11 years ago)
Author:
eric.carlson@apple.com
Message:

Unreviewed build fix.

  • platform/graphics/avfoundation/InbandTextTrackPrivateAVF.cpp:

(WebCore::InbandTextTrackPrivateAVF::processNativeSamples): Cast variadic argument to int.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r170381 r170384  
     12014-06-24  Eric Carlson  <eric.carlson@apple.com>
     2
     3        Unreviewed build fix.
     4
     5        * platform/graphics/avfoundation/InbandTextTrackPrivateAVF.cpp:
     6        (WebCore::InbandTextTrackPrivateAVF::processNativeSamples): Cast variadic argument to int.
     7
    182014-06-24  Brent Fulgham  <bfulgham@apple.com>
    29
  • trunk/Source/WebCore/platform/graphics/avfoundation/InbandTextTrackPrivateAVF.cpp

    r170379 r170384  
    572572        OSStatus status = CMSampleBufferGetSampleTimingInfo(sampleBuffer, i, &timingInfo);
    573573        if (status) {
    574             LOG(Media, "InbandTextTrackPrivateAVF::processNativeSamples(%p) - CMSampleBufferGetSampleTimingInfo returned error %x for sample %li", this, static_cast<SInt32>(status), i);
     574            LOG(Media, "InbandTextTrackPrivateAVF::processNativeSamples(%p) - CMSampleBufferGetSampleTimingInfo returned error %x for sample %li", this, static_cast<int>(status), i);
    575575            continue;
    576576        }
Note: See TracChangeset for help on using the changeset viewer.