mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-24 07:05:35 +00:00
Use correct format identifiers for logs on 64 bit systems.
This commit is contained in:
@@ -119,7 +119,7 @@ NSString *const ASDisplayNodeCAContentsGravityFromUIContentMode(UIViewContentMod
|
||||
return UIContentModeCAGravityLUT[i].string;
|
||||
}
|
||||
}
|
||||
ASDisplayNodeCAssert(contentMode == UIViewContentModeRedraw, @"Encountered an unknown contentMode %d. Is this a new version of iOS?", contentMode);
|
||||
ASDisplayNodeCAssert(contentMode == UIViewContentModeRedraw, @"Encountered an unknown contentMode %ld. Is this a new version of iOS?", contentMode);
|
||||
// Redraw is ok to return nil.
|
||||
return nil;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user