summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2018-06-07 11:25:40 -0400
committerJoel Fischer <joeljfischer@gmail.com>2018-06-07 11:25:40 -0400
commit193b1465bd2b5267ce7b2f748a11e68d62389590 (patch)
tree5b38e9eeac58135a0d98ed3711b5c6a37979411f
parent45f7751843d4f95350408c29205777ada41bbfa3 (diff)
downloadsdl_ios-193b1465bd2b5267ce7b2f748a11e68d62389590.tar.gz
Fix warning for cast
-rw-r--r--SmartDeviceLink/SDLMenuCell.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLMenuCell.m b/SmartDeviceLink/SDLMenuCell.m
index bb45061a1..0d2d9f03e 100644
--- a/SmartDeviceLink/SDLMenuCell.m
+++ b/SmartDeviceLink/SDLMenuCell.m
@@ -50,7 +50,7 @@ NS_ASSUME_NONNULL_BEGIN
}
- (NSString *)description {
- return [NSString stringWithFormat:@"SDLMenuCell: %u-\"%@\", artworkName: %@, voice commands: %lu, isSubcell: %@, hasSubcells: %@", _cellId, _title, _icon.name, (unsigned long)_voiceCommands.count, (_parentCellId != UINT32_MAX ? @"YES" : @"NO"), (_subCells.count > 0 ? @"YES" : @"NO")];
+ return [NSString stringWithFormat:@"SDLMenuCell: %u-\"%@\", artworkName: %@, voice commands: %lu, isSubcell: %@, hasSubcells: %@", (unsigned int)_cellId, _title, _icon.name, (unsigned long)_voiceCommands.count, (_parentCellId != UINT32_MAX ? @"YES" : @"NO"), (_subCells.count > 0 ? @"YES" : @"NO")];
}
@end