mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-22 22:25:57 +00:00
Fix incorrect string format specifier for NSInteger
This commit is contained in:
@@ -119,7 +119,7 @@ NSString *const ASDisplayNodeCAContentsGravityFromUIContentMode(UIViewContentMod
|
||||
return UIContentModeCAGravityLUT[i].string;
|
||||
}
|
||||
}
|
||||
ASDisplayNodeCAssert(contentMode == UIViewContentModeRedraw, @"Encountered an unknown contentMode %ld. Is this a new version of iOS?", contentMode);
|
||||
ASDisplayNodeCAssert(contentMode == UIViewContentModeRedraw, @"Encountered an unknown contentMode %zd. Is this a new version of iOS?", contentMode);
|
||||
// Redraw is ok to return nil.
|
||||
return nil;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user