From 114a6335b92e21fe068dc764b87ab9c60880648c Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Fri, 26 Jun 2015 16:17:26 +0200 Subject: [PATCH] UIChatCell: fix compilation --- Classes/LinphoneUI/UIChatCell.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Classes/LinphoneUI/UIChatCell.m b/Classes/LinphoneUI/UIChatCell.m index 62cd8ee41..f615b14e3 100644 --- a/Classes/LinphoneUI/UIChatCell.m +++ b/Classes/LinphoneUI/UIChatCell.m @@ -64,9 +64,9 @@ - (NSString *)accessibilityValue { if (chatContentLabel.text) { return [NSString stringWithFormat:@"%@ - %@ (%li)", addressLabel.text, chatContentLabel.text, - [unreadMessageLabel.text integerValue]]; + (long)[unreadMessageLabel.text integerValue]]; } else { - return [NSString stringWithFormat:@"%@ (%li)", addressLabel.text, [unreadMessageLabel.text integerValue]]; + return [NSString stringWithFormat:@"%@ (%li)", addressLabel.text, (long)[unreadMessageLabel.text integerValue]]; } }