From 080846f0d167ad1caa2ed9201c6b1b0b2fa8a2c7 Mon Sep 17 00:00:00 2001 From: giomfo Date: Wed, 16 Dec 2015 17:22:46 +0100 Subject: [PATCH] Remove warning --- Vector/Model/RoomList/RecentsDataSource.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vector/Model/RoomList/RecentsDataSource.m b/Vector/Model/RoomList/RecentsDataSource.m index 4b4684303..5289b18dd 100644 --- a/Vector/Model/RoomList/RecentsDataSource.m +++ b/Vector/Model/RoomList/RecentsDataSource.m @@ -616,7 +616,7 @@ - (void)moveRoomCell:(MXRoom*)room from:(NSIndexPath*)oldPath to:(NSIndexPath*)newPath success:(void (^)())moveSuccess failure:(void (^)(NSError *error))moveFailure; { - NSLog(@"[RecentsDataSource] moveCellFrom (%d, %d) to (%d, %d)", oldPath.section, oldPath.row, newPath.section, newPath.row); + NSLog(@"[RecentsDataSource] moveCellFrom (%zu, %zu) to (%zu, %zu)", oldPath.section, oldPath.row, newPath.section, newPath.row); if ([self canCellMoveFrom:oldPath to:newPath] && ![newPath isEqual:oldPath]) {