Fix NSInteger formatting warning from clang 6
"error: values of type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' instead" Casting to long is already a common practice in the code base. This has been blocking the Chromium roll which contains an update to clang 6.0.0 BUG=None Review-Url: https://codereview.webrtc.org/2987693002 Cr-Commit-Position: refs/heads/master@{#19127}
This commit is contained in:
@ -121,7 +121,7 @@ static inline BOOL IsMediaSubTypeSupported(FourCharCode mediaSubType) {
|
|||||||
[RTCDispatcher
|
[RTCDispatcher
|
||||||
dispatchAsyncOnType:RTCDispatcherTypeCaptureSession
|
dispatchAsyncOnType:RTCDispatcherTypeCaptureSession
|
||||||
block:^{
|
block:^{
|
||||||
RTCLogInfo("startCaptureWithDevice %@ @ %zd fps", format, fps);
|
RTCLogInfo("startCaptureWithDevice %@ @ %ld fps", format, (long)fps);
|
||||||
|
|
||||||
#if TARGET_OS_IPHONE
|
#if TARGET_OS_IPHONE
|
||||||
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
|
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
|
||||||
|
|||||||
Reference in New Issue
Block a user